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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2dd0d8b9bc11f6c5b8f974bc0f0c0b561f2e879071e2aa00fe012a322d20e73
4
- data.tar.gz: 0246c52e013c0309a7373b38f608bef56727e1265849e81898ea0b815b10db43
3
+ metadata.gz: d438320e7dbde72c516a167735971afdf2490f04fd1577799713b4ad5a6bc3bf
4
+ data.tar.gz: 593c7a4029f30b05edccec5b3fc41ecf6edd8f55c915c5c4c7430aa411f191d4
5
5
  SHA512:
6
- metadata.gz: 7c678257f51a73f69708a38da1865dee98884d09619dd7f57a79541a05d40c5192206bafdb6fdbce12db4380e6c6428c2a6ac6c09a514888219426637572837d
7
- data.tar.gz: 7cd5a57329c381a236edb74da800bd82f9ff21c59cc156c88f15789df3996aa81c0926a67840516f07327785b67acc67ec145d3f2eeeca7d82bda9f9db9baa4b
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.14] - 2026-02-11
8
+ ## [0.4.16] - 2026-02-24
9
9
 
10
- ### Added
10
+ ### Fixed
11
11
 
12
- - Reissue.changelog_sections accessor with configurable, ordered section list (3da8a89)
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
- ### Changed
14
+ ## [0.4.15] - 2026-02-12
16
15
 
17
- - DirectoryFragmentHandler and GitFragmentHandler use centralized sections instead of their own constants (3da8a89)
16
+ ### Fixed
18
17
 
19
- ## [0.4.13] - 2026-02-10
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 changelog trailer)
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 or another changelog trailer
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Reissue
4
- VERSION = "0.4.14"
4
+ VERSION = "0.4.16"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reissue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.14
4
+ version: 0.4.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay