samus 3.0.7 → 3.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dc527fb584bf69dd6a6480da0a2b596c25b25933128e5e6fd0dd507c9bd25c8
4
- data.tar.gz: cf90d9db43597fe07b57045d1b8ba6be5499da30ad20f817f66fdfa4c9766bea
3
+ metadata.gz: 47279c933b0dab9bdb56c9ef345f2d9330169b479a79b03c098d13c1164d5a28
4
+ data.tar.gz: 1edb84d24b1f00f5383d67e46a58f8c7fd39e72ff82358ba192b19a340343427
5
5
  SHA512:
6
- metadata.gz: bf62f34927200773aa2e7b77b8bf7a9c9d3d4f4c8d84735069c831b7379fea09a449146775820e07116864cb4473a51fd1ba6f55edf017d3bb7dd10f48e389a3
7
- data.tar.gz: 7f9810bd4fd4f383a2792f967852f36abef16623bfa52e456210b491badabdf7519f01ef55c5ec61a82b2065be54d765e8237e529f7d0822e4ceeea6c752837f
6
+ metadata.gz: 6f135fdb15cf918f35ac84f9dfdb4535a2c60dfdae2512f83b820fbfb61dd259b2033507259e14615371f1081a4ae46fbf542a244688baa51acc17832f2a60ec
7
+ data.tar.gz: 1accade2c2eb7adadb4599663d1a28f96db8e29c7af61e16f18df43e5e1c0e106ad10aa97207b2431469990a3af882988ec1184fd41d8e49ebbfde93659ed8e0
@@ -1,12 +1,18 @@
1
1
  # master
2
2
 
3
- # 3.0.7 - April 02nd, 2019
3
+ # 3.0.8 - April 1st, 2019
4
+
5
+ [3.0.8]: https://github.com/lsegal/samus/compare/v3.0.7...v3.0.8
6
+
7
+ - Fix timezone handling issue.
8
+
9
+ # 3.0.7 - April 1st, 2019
4
10
 
5
11
  [3.0.7]: https://github.com/lsegal/samus/compare/v3.0.6...v3.0.7
6
12
 
7
13
  - Fix bug in `publish` task of DockerReleaseTask in previous release.
8
14
 
9
- # 3.0.6 - April 02nd, 2019
15
+ # 3.0.6 - April 1st, 2019
10
16
 
11
17
  [3.0.6]: https://github.com/lsegal/samus/compare/v3.0.5...v3.0.6
12
18
 
@@ -4,6 +4,7 @@ file = ARGV[0]
4
4
  ver = ENV['_VERSION']
5
5
  master = ENV['_MASTER'] || 'master'
6
6
  title_fmt = ENV['_TITLE_FORMAT'] || "[$version] - %B %-d$day_nth, %Y"
7
+ ENV['TZ'] ||= ENV['_TZ']
7
8
 
8
9
  content = File.read(file)
9
10
  compare_url = `git config remote.origin.url`.strip.sub(/^git@(.+?):/, 'https://\1/')
@@ -14,3 +14,5 @@ Arguments:
14
14
  also include `$version` to represent the title of the rotated changelog entry.
15
15
  Example: `$version - %B %-d, %Y`. It is recommended to put the version at the
16
16
  front of the title to improve the reliability of generating a compare URL.
17
+ - tz: (optional) set the timezone if not available on the build system. Defaults
18
+ to system timezone.
@@ -1,3 +1,3 @@
1
1
  module Samus
2
- VERSION = '3.0.7'.freeze
2
+ VERSION = '3.0.8'.freeze
3
3
  end
data/samus.json CHANGED
@@ -12,7 +12,8 @@
12
12
  "action": "changelog-rotate",
13
13
  "files": ["CHANGELOG.md"],
14
14
  "arguments": {
15
- "title_format": "$version - %B %d$day_nth, %Y"
15
+ "title_format": "$version - %B %-d$day_nth, %Y",
16
+ "tz": "GMT+8"
16
17
  }
17
18
  },
18
19
  {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samus
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.7
4
+ version: 3.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loren Segal