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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fed8556028947081de339199270312250e14601abaa34ce196a12624a084459
4
- data.tar.gz: a0f4a32509247348f1e22abee6659b65ced56f5782f1cd6ab965d6b8d9d4d3ee
3
+ metadata.gz: d438320e7dbde72c516a167735971afdf2490f04fd1577799713b4ad5a6bc3bf
4
+ data.tar.gz: 593c7a4029f30b05edccec5b3fc41ecf6edd8f55c915c5c4c7430aa411f191d4
5
5
  SHA512:
6
- metadata.gz: 22f97133833a4242cbf35d445d691dc46c8315b802af1874410732aef871a7f957f2ab3544afa20e9afa552ab4ab1fe2defd3aa399ef7493551f0e0b7cb4f6b6
7
- data.tar.gz: 8980b6c4865215877b066845ce160e7188c2bb5f72b8d5a0daa2847a7c53444d44560cc47345be27743100ec2dea96a9020d523e38d38482908cf6dc379ea098
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.15] - 2026-02-12
8
+ ## [0.4.16] - 2026-02-24
9
9
 
10
10
  ### Fixed
11
11
 
12
- - Non-changelog git trailers no longer appear in changelog entries (18f79e2)
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
- - Reissue.changelog_sections accessor with configurable, ordered section list (3da8a89)
19
- - changelog_sections option to Rake task and Hoe plugin (3da8a89)
14
+ ## [0.4.15] - 2026-02-12
20
15
 
21
- ### Changed
16
+ ### Fixed
22
17
 
23
- - DirectoryFragmentHandler and GitFragmentHandler use centralized sections instead of their own constants (3da8a89)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Reissue
4
- VERSION = "0.4.15"
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.15
4
+ version: 0.4.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay