Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-sharp committed Aug 8, 2024
1 parent ebacef1 commit 79e8f41
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.5.0]
### Removed
- Dropped support for Rails 6.0 and earlier
- Dropped support for Ruby 3.0 and earlier

## [1.4.0]
### Added
- Support for Rails 7
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:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
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:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/activerecord_7.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
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:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
migration-lock-timeout (1.4.0)
migration-lock-timeout (1.5.0)
activerecord (>= 6.1, < 8.0)

GEM
Expand Down
5 changes: 4 additions & 1 deletion lib/migration_lock_timeout/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module MigrationLockTimeout
VERSION = "1.4.0"
MAJOR = 1
MINOR = 5
PATCH = 0
VERSION = [MAJOR, MINOR, PATCH].join('.')
end

0 comments on commit 79e8f41

Please sign in to comment.