Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenMax committed Dec 6, 2023
1 parent c97700f commit 1a20117
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 13 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
- Added: State machine can now use the `:prefix` option to avoid name collision if you define multiple state machines
on the same model, and use state names more than once

### Compatible changes

- Fix bug where additional inclusions of `RailsStateMachine::Model` would reset previous defined state machines

### Breaking changes


## 2.2.0 2023-12-06

### Compatible changes

- Added: State machine can now use the `:prefix` option to avoid name collision if you define multiple state machines
on the same model, and use state names more than once
- Fix bug where additional inclusions of `RailsStateMachine::Model` would reset previous defined state machines

## 2.1.1 2022-03-16

### Compatible changes
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.5.1.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_state_machine (2.1.1)
rails_state_machine (2.2.0)
activerecord

GEM
Expand Down Expand Up @@ -146,4 +146,4 @@ DEPENDENCIES
rspec (~> 3.5)

BUNDLED WITH
2.2.3
2.3.0
4 changes: 2 additions & 2 deletions Gemfile.5.2.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_state_machine (2.1.1)
rails_state_machine (2.2.0)
activerecord

GEM
Expand Down Expand Up @@ -156,4 +156,4 @@ DEPENDENCIES
rspec (~> 3.5)

BUNDLED WITH
2.2.15
2.3.0
4 changes: 2 additions & 2 deletions Gemfile.6.0.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_state_machine (2.1.1)
rails_state_machine (2.2.0)
activerecord

GEM
Expand Down Expand Up @@ -172,4 +172,4 @@ DEPENDENCIES
rspec (~> 3.5)

BUNDLED WITH
2.1.4
2.3.0
2 changes: 1 addition & 1 deletion Gemfile.6.1.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_state_machine (2.1.1)
rails_state_machine (2.2.0)
activerecord

GEM
Expand Down
7 changes: 6 additions & 1 deletion Gemfile.7.0.pg.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rails_state_machine (2.1.1)
rails_state_machine (2.2.0)
activerecord

GEM
Expand Down Expand Up @@ -92,8 +92,12 @@ GEM
marcel (1.0.2)
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.6.1)
minitest (5.15.0)
nio4r (2.5.8)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
racc (~> 1.4)
nokogiri (1.12.5-x86_64-linux)
racc (~> 1.4)
pg (1.2.3)
Expand Down Expand Up @@ -156,6 +160,7 @@ GEM
zeitwerk (2.5.1)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_state_machine/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RailsStateMachine
VERSION = '2.1.1'
VERSION = '2.2.0'
end

0 comments on commit 1a20117

Please sign in to comment.