Skip to content

Commit 79e8f41

Browse files
committed
Bump version
1 parent ebacef1 commit 79e8f41

9 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.5.0]
8+
### Removed
9+
- Dropped support for Rails 6.0 and earlier
10+
- Dropped support for Ruby 3.0 and earlier
11+
712
## [1.4.0]
813
### Added
914
- Support for Rails 7

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_6_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_6_1_with_strong_migrations.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_7.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_7_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_7_1_with_strong_migrations.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM

gemfiles/activerecord_7_with_strong_migrations.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
migration-lock-timeout (1.4.0)
4+
migration-lock-timeout (1.5.0)
55
activerecord (>= 6.1, < 8.0)
66

77
GEM
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
module MigrationLockTimeout
2-
VERSION = "1.4.0"
2+
MAJOR = 1
3+
MINOR = 5
4+
PATCH = 0
5+
VERSION = [MAJOR, MINOR, PATCH].join('.')
36
end

0 commit comments

Comments
 (0)