From f93956d7674c16ec563723c3099e74ada6e13ea5 Mon Sep 17 00:00:00 2001 From: Ross Brandes Date: Fri, 15 Nov 2024 15:59:00 -0600 Subject: [PATCH] Bump version to 0.3.0 --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- good_migrations.gemspec | 2 +- lib/good_migrations/version.rb | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b80d4f..0963cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 0.3.0 +* Minimum supported Ruby version is now 3.1 +* Exclude unnecessary files from the packaged gem + ## 0.2.1 * Fix Windows paths [#31](https://github.com/testdouble/good-migrations/pull/31) diff --git a/Gemfile.lock b/Gemfile.lock index 8aa0f96..d577c53 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - good_migrations (0.2.1) + good_migrations (0.3.0) activerecord (>= 3.1) railties (>= 3.1) diff --git a/good_migrations.gemspec b/good_migrations.gemspec index 7df7e72..1bbdfd0 100644 --- a/good_migrations.gemspec +++ b/good_migrations.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = "Referencing code in app/ from a database migration risks breaking the migration when your app code changes; this gem prevents that mistake" spec.homepage = "https://github.com/testdouble/good-migrations" spec.license = "MIT" - spec.required_ruby_version = ">= 2.3.0" + spec.required_ruby_version = ">= 3.1.0" spec.metadata["rubygems_mfa_required"] = "true" spec.files = `git ls-files -z -- lib CHANGELOG* LICENSE*`.split("\x0") diff --git a/lib/good_migrations/version.rb b/lib/good_migrations/version.rb index a1f3bfc..c6cb95d 100644 --- a/lib/good_migrations/version.rb +++ b/lib/good_migrations/version.rb @@ -1,3 +1,3 @@ module GoodMigrations - VERSION = "0.2.1" + VERSION = "0.3.0" end