reissue 0.4.14 → 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 +6 -12
- data/lib/reissue/fragment_handler/git_fragment_handler.rb +3 -2
- 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,20 +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
|
-
- changelog_sections option to Rake task and Hoe plugin (3da8a89)
|
|
12
|
+
- Run bundle install after reissue:bump changes the version (104bfd8)
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
## [0.4.15] - 2026-02-12
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
### Fixed
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
### Added
|
|
22
|
-
|
|
23
|
-
- Hoe plugin for integrating Reissue into Hoe-based projects (f5dde22)
|
|
24
|
-
- Hoe plugin usage documentation in README and reissue:initialize task output (2bbd4ea)
|
|
18
|
+
- Non-changelog git trailers no longer appear in changelog entries (18f79e2)
|
|
@@ -163,12 +163,13 @@ module Reissue
|
|
|
163
163
|
section_name = normalize_section_name(match[1])
|
|
164
164
|
trailer_value = match[2].strip
|
|
165
165
|
|
|
166
|
-
# Collect continuation lines (non-empty lines that don't start a new
|
|
166
|
+
# Collect continuation lines (non-empty lines that don't start a new trailer)
|
|
167
167
|
while i < lines.length
|
|
168
168
|
next_line = lines[i].rstrip
|
|
169
|
-
# Stop at empty line
|
|
169
|
+
# Stop at empty line, another changelog trailer, or any git trailer
|
|
170
170
|
break if next_line.strip.empty?
|
|
171
171
|
break if next_line.match(trailer_regex)
|
|
172
|
+
break if next_line.match?(/^[A-Za-z][\w-]+:\s/)
|
|
172
173
|
|
|
173
174
|
trailer_value += " #{next_line.strip}"
|
|
174
175
|
i += 1
|
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