From ba2778c3e9b5a012edc621c3ade49636fcc3aaec Mon Sep 17 00:00:00 2001 From: Michael MacDonald Date: Wed, 10 Aug 2022 11:51:21 +1000 Subject: [PATCH] Bump to version 3.6.2 (#35) --- CHANGELOG.md | 14 ++++++++++++++ lib/patches/version.rb | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0205827..625677c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [3.6.2] - 2022-08-10 + +Fixes incorrect release - tag and published gem back in sync + +## [3.6.1] - 2022-08-10 +### Added +- Github actions to publish to Rubygems upon release + +### Fixed +- Fix `patches:pending` rake task + ## [3.6.0] - 2022-05-27 + +3.6.1 changes were incorrectly published as 3.6.0 but tagged as 3.6.1 + ### Added - Added `notification_prefix` and `notification_suffix` to configuration options - Linked to docs/usage.md in README diff --git a/lib/patches/version.rb b/lib/patches/version.rb index 00a4729..55af802 100644 --- a/lib/patches/version.rb +++ b/lib/patches/version.rb @@ -1,6 +1,6 @@ module Patches MAJOR = 3 MINOR = 6 - PATCH = 0 + PATCH = 2 VERSION = [MAJOR, MINOR, PATCH].compact.join(".").freeze end