From 716f794ff63eeed63bd9d3eee826e36693784b0b Mon Sep 17 00:00:00 2001 From: Jim Gay Date: Sat, 8 Jun 2024 21:40:21 -0400 Subject: [PATCH] Bump version to 0.1.3 --- CHANGELOG.md | 25 ++----------------------- Gemfile.lock | 2 +- lib/reissue/version.rb | 2 +- 3 files changed, 4 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0eeb8..2cccde9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,31 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.1.3] - Unreleased + ## [0.1.2] - 2024-06-08 ### Fixed: - Fix references to Gem::Version from the top level - -## [0.1.1] - 2024-06-08 - -### Added: - -- bundle install when running reissue -- handling of brackets in the changelog version numbers -- Reissue::Parser class to parse the changelog file -- Reissue::Printer class to print the changelog file -- Reissue::Task class to handle the creation of reissue tasks -- Return version and date from Reissue.finalize -- Ability to limit the number of versions to maintain -- Gem release support -- Description of how to use and configure the gem in the README.md - -### Fixed: - -- bug in tests loading the changelog fixture -- format of the changelog file - -### Removed: - -- dependency on the keepachangelog gem diff --git a/Gemfile.lock b/Gemfile.lock index 9dd9228..09383e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - reissue (0.1.1) + reissue (0.1.3) rake GEM diff --git a/lib/reissue/version.rb b/lib/reissue/version.rb index 0607b63..f669c42 100644 --- a/lib/reissue/version.rb +++ b/lib/reissue/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Reissue - VERSION = "0.1.2" + VERSION = "0.1.3" end