From a56b219543b7084589d82e0c36cc394e1b055de9 Mon Sep 17 00:00:00 2001 From: James Couball Date: Tue, 11 Nov 2025 11:49:12 -0800 Subject: [PATCH] chore: release v4.0.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ lib/git/version.rb | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 824fecd7..8a77bdac 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.0.5" + ".": "4.0.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 729f2324..dff9ce63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ # Change Log +## [4.0.6](https://github.com/ruby-git/ruby-git/compare/v4.0.5...v4.0.6) (2025-11-11) + + +### Bug Fixes + +* Standardize deprecation handling and consolidate tests (fixes [#842](https://github.com/ruby-git/ruby-git/issues/842)) ([a731110](https://github.com/ruby-git/ruby-git/commit/a73111017a64bd1ae83d35f9d5f4a18f43f7c2eb)) + + +### Other Changes + +* Refactor Rakefile by splitting tasks into separate files ([bd69f9b](https://github.com/ruby-git/ruby-git/commit/bd69f9b6a48298a9c6eed1987bec55b67384b89c)) +* Remove redundant escape in BRANCH_LINE_REGEXP (Style/RedundantRegexpEscape) ([4a03b5c](https://github.com/ruby-git/ruby-git/commit/4a03b5ce2939ad8a92496a443a6edcd6ce059a70)) + ## [4.0.5](https://github.com/ruby-git/ruby-git/compare/v4.0.4...v4.0.5) (2025-08-20) diff --git a/lib/git/version.rb b/lib/git/version.rb index 4dee9965..737888a6 100644 --- a/lib/git/version.rb +++ b/lib/git/version.rb @@ -3,5 +3,5 @@ module Git # The current gem version # @return [String] the current gem version. - VERSION = '4.0.5' + VERSION = '4.0.6' end