reissue 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6ac7b4c6d82f57ed9e9733bfa072344ea79c3b5075aaf4789f40815be528ebd
4
- data.tar.gz: a6eb54ae8e1037521b227f21869853292339c1b189e5ad8f060e62e044fdeaa4
3
+ metadata.gz: 4cc74e34e41fc5b950be6012c3b517235f0a6537f30c09ae17c6f8d66240407a
4
+ data.tar.gz: 19f8f5b5bb7cdce525e26d3def6c18139462def2b9ac5c936659a7f4608bf213
5
5
  SHA512:
6
- metadata.gz: 2481e4f823168b94f3374e97a3e2c55b7e394e4110c5fdd9cf8b4635b2919049e22de219f07d9efac7ec62168a97bc50a83227b30cad7fe5b8830268d95a43ca
7
- data.tar.gz: 9ca6fa4a75c7c9037f4289febae72552b777fb31fe5576a349fcd8f608c350d89e9f6beb4a66662e298afb67c2ee2bef44cc81a5a86be57ef04486f5a8a4d2ed
6
+ metadata.gz: 84e988380692e405e2e173e2e87cb9e6088328e120640c4a482b3e737985961abe40f1ecadffd674113489f635101d0f75777d56635a3636b054f27c275c1be7
7
+ data.tar.gz: 02f0db508076455faf195b7f1b0ecd8d8ab3b1e772e61f335935b48f2bde96aee76aa6a89c9a8e39c44d358fe3d2d70d1fe41c2d4bd2ccdb445c0b103ed4b853
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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.3.2] - 2025-01-16
9
+
10
+ ### Fixed
11
+
12
+ - Parser will handle nil changes
13
+
8
14
  ## [0.3.1] - 2025-01-16
9
15
 
10
16
  ### Added
@@ -16,13 +22,3 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
22
  - Set the name of the `reissue:branch` argument to `branch_name` to be clearer.
17
23
  - Inject the constants in the `create` method.
18
24
  - Updated the tested Ruby version to 3.4.
19
-
20
- ## [0.3.0] - 2024-09-06
21
-
22
- ### Added
23
-
24
- - Add `push_reissue` option to control pushing changes to the remote repository.
25
-
26
- ### Changed
27
-
28
- - Default behavior of _this_ gem's release is to push finalize without a branch.
@@ -18,7 +18,7 @@ module Reissue
18
18
  private
19
19
 
20
20
  def versions
21
- @changelog["versions"].map do |data|
21
+ @changelog["versions"].to_a.map do |data|
22
22
  version = data["version"]
23
23
  date = data["date"]
24
24
  changes = data.fetch("changes") do
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Reissue
4
- VERSION = "0.3.1"
4
+ VERSION = "0.3.2"
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.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay