samus 3.0.7 → 3.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -2
- data/commands/build/changelog-rotate +1 -0
- data/commands/build/changelog-rotate.help.md +2 -0
- data/lib/samus/version.rb +1 -1
- data/samus.json +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47279c933b0dab9bdb56c9ef345f2d9330169b479a79b03c098d13c1164d5a28
|
|
4
|
+
data.tar.gz: 1edb84d24b1f00f5383d67e46a58f8c7fd39e72ff82358ba192b19a340343427
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f135fdb15cf918f35ac84f9dfdb4535a2c60dfdae2512f83b820fbfb61dd259b2033507259e14615371f1081a4ae46fbf542a244688baa51acc17832f2a60ec
|
|
7
|
+
data.tar.gz: 1accade2c2eb7adadb4599663d1a28f96db8e29c7af61e16f18df43e5e1c0e106ad10aa97207b2431469990a3af882988ec1184fd41d8e49ebbfde93659ed8e0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# master
|
|
2
2
|
|
|
3
|
-
# 3.0.
|
|
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
|
|
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.
|
data/lib/samus/version.rb
CHANGED
data/samus.json
CHANGED