Skip to content

Commit

Permalink
Update version to new working version
Browse files Browse the repository at this point in the history
  • Loading branch information
lvonk committed Oct 1, 2024
1 parent 07da3b6 commit 579a3b9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@ Ensure the version in `lib/version.rb` is the new version. If not change it and

Then run `rake release`. A git tag will be created and pushed, and the new version of the gem will be pushed to rubygems.

Increase version to working version.
Increase version to new working version, update the sequent version for all the `gemfiles`:

```
BUNDLE_GEMFILE=gemfiles/ar_6_0.gemfile bundle update sequent --conservative
BUNDLE_GEMFILE=gemfiles/ar_6_1.gemfile bundle update sequent --conservative
BUNDLE_GEMFILE=gemfiles/ar_7_0.gemfile bundle update sequent --conservative
BUNDLE_GEMFILE=gemfiles/ar_7_1.gemfile bundle update sequent --conservative
BUNDLE_GEMFILE=gemfiles/ar_7_2.gemfile bundle update sequent --conservative
```

## Running the specs

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_6_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (7.1.1)
sequent (7.1.2)
activemodel (>= 6.0)
activerecord (>= 6.0)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_6_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (7.1.1)
sequent (7.1.2)
activemodel (>= 6.0)
activerecord (>= 6.0)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_7_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (7.1.1)
sequent (7.1.2)
activemodel (>= 6.0)
activerecord (>= 6.0)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_7_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (7.1.1)
sequent (7.1.2)
activemodel (>= 6.0)
activerecord (>= 6.0)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/ar_7_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
sequent (7.1.1)
sequent (7.1.2)
activemodel (>= 6.0)
activerecord (>= 6.0)
bcrypt (~> 3.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Sequent
VERSION = '7.1.1'
VERSION = '7.1.2'
end

0 comments on commit 579a3b9

Please sign in to comment.