diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c62314fc..d827bd95 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -122,6 +122,17 @@ jobs: run: bundle install - name: Increment version - run: gem bump --version patch --tag --push --skip-ci --release --file lib/git_fame/version.rb + run: gem bump --version patch --tag --skip-ci --release --file lib/git_fame/version.rb env: GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }} + + - name: Install dependencies + run: bundle install + env: + BUNDLE_FROZEN: "false" + + - name: Add and commit version bump + run: git commit -a --amend --no-edit + + - name: Push changes + run: git push --tags diff --git a/Gemfile.lock b/Gemfile.lock index 78e43bda..4f8ab0a1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - git_fame (3.2.11) - activesupport (>= 7, < 9) + git_fame (3.2.14) + activesupport (~> 7.0) dry-initializer (~> 3.0) dry-struct (~> 1.0) dry-types (~> 1.0) diff --git a/lib/git_fame/version.rb b/lib/git_fame/version.rb index 91b759aa..ec48c8d6 100644 --- a/lib/git_fame/version.rb +++ b/lib/git_fame/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GitFame - VERSION = "3.2.12" + VERSION = "3.2.14" end