reissue 0.1.4 → 0.1.5

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: a7c66c77dcfbdb035092802d02176419055145251987dda7cfc528c33cea8fce
4
- data.tar.gz: 25a7dcf2f67a043c4f35bb779fa8603eac936f1633d71915068581beff1295af
3
+ metadata.gz: fe285dfda18d82a77561abf6281b96f1fb2e3739cbbf5c7b6b072f6e3fe12c94
4
+ data.tar.gz: 36c3e171e17214892f9cef24724c3c901cc56406c39218a4239a656ac02a354e
5
5
  SHA512:
6
- metadata.gz: c0f14e1bd96f8da42a1cf5b55485c26b2dcf941200228b0032ec0a1686b71e23c37ff73ee4925422744c4a0818be15bb20dffb0e8f64f8d5e8bc991f97181e0d
7
- data.tar.gz: 8d2e7d47bc7a8d81238370cd635f5998c01a3091894da80524473aafd3e4d628423896101f6f91478d3427ed278553703215dfd77ea2c5971bbb6391860ccf4d
6
+ metadata.gz: 189dbe15b33aff0e110d5b823e24cbc8444242f90a7f2e5543a7cce414213d428795dac6c7fedbe1e7eef6b1786238ecae61b4e0ae5e56947ee1e2ef77bac4cd
7
+ data.tar.gz: 39a8b27c26db53c0fe31ac39b0b6d0c5cef559bb67d3100b585ab5ee01a29b83907eb3241118dd481e8572647107f27101926ee11144cb1281f64176379f1ff3
data/CHANGELOG.md CHANGED
@@ -5,23 +5,15 @@ 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.1.4] - 2024-06-09
8
+ ## [0.1.5] - 2024-06-09
9
9
 
10
10
  ### Fixed
11
11
 
12
- - Handle changlog files without an empty last line
13
- - Handle empty version_limit in reformat task
14
-
15
- ## [0.1.3] - 2024-06-09
12
+ - Fixed incorrect handling of missing empty last line
16
13
 
17
- ### Added
18
-
19
- - Support for alhpa characters in version numbers
20
- - Support for English names for Greek alphabet letters in version numbers
14
+ ## [0.1.4] - 2024-06-09
21
15
 
22
16
  ### Fixed
23
17
 
24
- - Reissue.finalize returns the version and value as an array
25
- - Documentation on the refined redo method in Gem::Version
26
- - Limit major numbers to Integers
27
- - Handle empty changelog files
18
+ - Handle changlog files without an empty last line
19
+ - Handle empty version_limit in reformat task
data/Rakefile CHANGED
@@ -15,7 +15,6 @@ task default: :test
15
15
  require_relative "lib/reissue/gem"
16
16
 
17
17
  Reissue::Task.create :reissue do |task|
18
- task.updated_paths << "checksums"
19
18
  task.version_file = "lib/reissue/version.rb"
20
19
  task.commit = true
21
20
  end
@@ -13,7 +13,7 @@ module Reissue
13
13
  end
14
14
 
15
15
  def parse
16
- scanner = StringScanner.new(@changelog)
16
+ scanner = StringScanner.new(@changelog) << "\n"
17
17
  @parts << parse_title(scanner)
18
18
  @parts << parse_preamble(scanner)
19
19
  @parts << parse_versions(scanner)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Reissue
4
- VERSION = "0.1.4"
4
+ VERSION = "0.1.5"
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.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay