reissue 0.4.15 → 0.4.16
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 +5 -10
- data/lib/reissue/rake.rb +3 -0
- data/lib/reissue/version.rb +1 -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: d438320e7dbde72c516a167735971afdf2490f04fd1577799713b4ad5a6bc3bf
|
|
4
|
+
data.tar.gz: 593c7a4029f30b05edccec5b3fc41ecf6edd8f55c915c5c4c7430aa411f191d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 42d49d6a3517aec2254c1146de03e56fce110d9e1ebacb522dc7d5062c11e2f2f895d6b4dd4d1b7f3ba23c9af465c9e60799bae15a50faaa3943fd06269b4df9
|
|
7
|
+
data.tar.gz: 72bec5a3286d02a11e52d44df6260905909b60d5ca89ace23e7550a6f6b5212218a0a92fe388f2a840c2391b6f0b5cc3dc3aa5a98de58d50cda418c1e0c0bc16
|
data/CHANGELOG.md
CHANGED
|
@@ -5,19 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
|
-
## [0.4.
|
|
8
|
+
## [0.4.16] - 2026-02-24
|
|
9
9
|
|
|
10
10
|
### Fixed
|
|
11
11
|
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
## [0.4.14] - 2026-02-11
|
|
15
|
-
|
|
16
|
-
### Added
|
|
12
|
+
- Run bundle install after reissue:bump changes the version (104bfd8)
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
- changelog_sections option to Rake task and Hoe plugin (3da8a89)
|
|
14
|
+
## [0.4.15] - 2026-02-12
|
|
20
15
|
|
|
21
|
-
###
|
|
16
|
+
### Fixed
|
|
22
17
|
|
|
23
|
-
-
|
|
18
|
+
- Non-changelog git trailers no longer appear in changelog entries (18f79e2)
|
data/lib/reissue/rake.rb
CHANGED
|
@@ -379,6 +379,7 @@ module Reissue
|
|
|
379
379
|
if bump
|
|
380
380
|
updater = Reissue::VersionUpdater.new(version_file, version_redo_proc: version_redo_proc)
|
|
381
381
|
updater.call(bump)
|
|
382
|
+
bundle
|
|
382
383
|
puts "Version bumped (#{bump}) to #{updater.instance_variable_get(:@new_version)}"
|
|
383
384
|
end
|
|
384
385
|
elsif tag_version && current_version != tag_version
|
|
@@ -388,6 +389,7 @@ module Reissue
|
|
|
388
389
|
|
|
389
390
|
if desired_version > current_version
|
|
390
391
|
updater.call(bump)
|
|
392
|
+
bundle
|
|
391
393
|
puts "Version bumped (#{bump}) to #{updater.instance_variable_get(:@new_version)}"
|
|
392
394
|
else
|
|
393
395
|
puts "Version already bumped (#{tag_version} → #{current_version}), skipping"
|
|
@@ -398,6 +400,7 @@ module Reissue
|
|
|
398
400
|
elsif bump
|
|
399
401
|
updater = Reissue::VersionUpdater.new(version_file, version_redo_proc: version_redo_proc)
|
|
400
402
|
updater.call(bump)
|
|
403
|
+
bundle
|
|
401
404
|
puts "Version bumped (#{bump}) to #{updater.instance_variable_get(:@new_version)}"
|
|
402
405
|
end
|
|
403
406
|
end
|
data/lib/reissue/version.rb
CHANGED