Skip to content

Commit 3dbf756

Browse files
committed
Explicitly increase minimum supported Ruby version
1 parent 78f4ce7 commit 3dbf756

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## Unreleased
4+
* Minimum supported Ruby version is now 3.1
5+
36
## 0.2.1
47

58
* Fix Windows paths [#31](https://github.com/testdouble/good-migrations/pull/31)

good_migrations.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = "Referencing code in app/ from a database migration risks breaking the migration when your app code changes; this gem prevents that mistake"
1313
spec.homepage = "https://github.com/testdouble/good-migrations"
1414
spec.license = "MIT"
15-
spec.required_ruby_version = ">= 2.3.0"
15+
spec.required_ruby_version = ">= 3.1.0"
1616
spec.metadata["rubygems_mfa_required"] = "true"
1717

1818
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

0 commit comments

Comments
 (0)