From 5103343ca5eb828638c638285297a9c6209662f5 Mon Sep 17 00:00:00 2001 From: joe-sharp Date: Thu, 8 Aug 2024 09:46:48 -0500 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- gemfiles/activerecord_6_1.gemfile.lock | 2 +- .../activerecord_6_1_with_strong_migrations.gemfile.lock | 2 +- gemfiles/activerecord_7.gemfile.lock | 2 +- gemfiles/activerecord_7_1.gemfile.lock | 2 +- .../activerecord_7_1_with_strong_migrations.gemfile.lock | 2 +- gemfiles/activerecord_7_with_strong_migrations.gemfile.lock | 2 +- lib/migration_lock_timeout/version.rb | 5 ++++- 9 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dcefae..e68291f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index 1c84892..6769808 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_6_1.gemfile.lock b/gemfiles/activerecord_6_1.gemfile.lock index c4a681f..6eab6b2 100644 --- a/gemfiles/activerecord_6_1.gemfile.lock +++ b/gemfiles/activerecord_6_1.gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_6_1_with_strong_migrations.gemfile.lock b/gemfiles/activerecord_6_1_with_strong_migrations.gemfile.lock index 654df87..b83448f 100644 --- a/gemfiles/activerecord_6_1_with_strong_migrations.gemfile.lock +++ b/gemfiles/activerecord_6_1_with_strong_migrations.gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_7.gemfile.lock b/gemfiles/activerecord_7.gemfile.lock index 73b60f7..a3e403b 100644 --- a/gemfiles/activerecord_7.gemfile.lock +++ b/gemfiles/activerecord_7.gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_7_1.gemfile.lock b/gemfiles/activerecord_7_1.gemfile.lock index 0e4616d..401aed6 100644 --- a/gemfiles/activerecord_7_1.gemfile.lock +++ b/gemfiles/activerecord_7_1.gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_7_1_with_strong_migrations.gemfile.lock b/gemfiles/activerecord_7_1_with_strong_migrations.gemfile.lock index de49a85..fba5d96 100644 --- a/gemfiles/activerecord_7_1_with_strong_migrations.gemfile.lock +++ b/gemfiles/activerecord_7_1_with_strong_migrations.gemfile.lock @@ -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 diff --git a/gemfiles/activerecord_7_with_strong_migrations.gemfile.lock b/gemfiles/activerecord_7_with_strong_migrations.gemfile.lock index ff8d526..9fd5eaf 100644 --- a/gemfiles/activerecord_7_with_strong_migrations.gemfile.lock +++ b/gemfiles/activerecord_7_with_strong_migrations.gemfile.lock @@ -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 diff --git a/lib/migration_lock_timeout/version.rb b/lib/migration_lock_timeout/version.rb index f37c88f..eaeb628 100644 --- a/lib/migration_lock_timeout/version.rb +++ b/lib/migration_lock_timeout/version.rb @@ -1,3 +1,6 @@ module MigrationLockTimeout - VERSION = "1.4.0" + MAJOR = 1 + MINOR = 5 + PATCH = 0 + VERSION = [MAJOR, MINOR, PATCH].join('.') end