Skip to content

Commit

Permalink
v2.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Oct 30, 2023
1 parent e1a0222 commit 507cda4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# NEXT

# v2.22.0
- rails 7.1 support

# v2.21.0
- use match? instead of =~ in HexConstraint

# 2.20.0
- Adds a ULID constraint type

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
stronger_parameters (2.21.1)
stronger_parameters (2.22.0)
actionpack (>= 5.0, < 7.2)

GEM
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,8 @@ curl -I 'http://localhost/api/users/1.json' -X POST -d '{ "user": { "id": 1 } }'
```
git checkout master && git fetch origin && git reset --hard origin/master
bundle exec rake bump:<patch|minor|major>
# -> manually edit changelog
git commit -a --amend --no-edit
bundle exec rake release
```

Expand Down
2 changes: 1 addition & 1 deletion lib/stronger_parameters/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module StrongerParameters
VERSION = '2.21.1'
VERSION = '2.22.0'
end

0 comments on commit 507cda4

Please sign in to comment.