Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenseng committed Nov 25, 2024
1 parent 4ab99ff commit 0cdd699
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

## 1.1.x
## 1.3.x

### 1.3.0

- support rails 8 ([#131](https://github.com/jenseng/hair_trigger/pull/131), [#133](https://github.com/jenseng/hair_trigger/pull/133))


## 1.2.x

### 1.2.0

Expand All @@ -10,6 +17,8 @@
- support referencing old and new tables ([#125](https://github.com/jenseng/hair_trigger/pull/125))
- testing fixes, minor refactors (([#124](https://github.com/jenseng/hair_trigger/pull/124)), ([#127](https://github.com/jenseng/hair_trigger/pull/127)))

## 1.1.x

### 1.1.0

- fix for rails 7+ compatibility ([#118](https://github.com/jenseng/hair_trigger/pull/118))
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_6.1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_7.0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_7.1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_7.2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_8.0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down
3 changes: 2 additions & 1 deletion gemfiles/activerecord_edge.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GIT
PATH
remote: ..
specs:
hairtrigger (1.2.0)
hairtrigger (1.3.0)
activerecord (>= 6.0, < 9)
ruby2ruby (~> 2.4)
ruby_parser (~> 3.10)
Expand Down Expand Up @@ -79,6 +79,7 @@ GEM
sexp_processor (4.17.0)
sqlite3 (2.1.1)
mini_portile2 (~> 2.8.0)
sqlite3 (2.1.1-arm64-darwin)
thor (1.3.0)
timeout (0.4.1)
tzinfo (2.0.6)
Expand Down
2 changes: 1 addition & 1 deletion lib/hair_trigger/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module HairTrigger
VERSION = "1.2.0"
VERSION = "1.3.0"

def VERSION.<=>(other)
split(/\./).map(&:to_i) <=> other.split(/\./).map(&:to_i)
Expand Down

0 comments on commit 0cdd699

Please sign in to comment.