From 920103883add43b21221c3e8c436f93a0ca936a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 02:06:09 +0000 Subject: [PATCH 1/3] Bump rexml from 3.2.8 to 3.3.3 Bumps [rexml](https://github.com/ruby/rexml) from 3.2.8 to 3.3.3. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](https://github.com/ruby/rexml/compare/v3.2.8...v3.3.3) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 59d53be..2da8594 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -120,8 +120,8 @@ GEM regexp_parser (2.9.0) reline (0.4.3) io-console (~> 0.5) - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.3.3) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) From 6db6acf59d9db84af3283897ef02f2a54758ea00 Mon Sep 17 00:00:00 2001 From: Ilya Katz Date: Mon, 12 Aug 2024 19:52:20 -0700 Subject: [PATCH 2/3] Document release process --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e6aca12..4e93fd5 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,14 @@ bundle exec appraisal rails-7.0 rspec bundle exec appraisal rails-7.1 rspec ``` +## Releasing new version + +1. Create a new tag, eg `git tag 9.4.1` +1. Go to https://github.com/ilyakatz/data-migrate/tags +1. Click "Create release" under 9.4.1 +1. CLick "Generate release notes" +1. Click "Publish release" + ## Thanks [Andrew J Vargo](http://github.com/ajvargo) Andrew was the original creator and maintainer of this project! From 4d6715eaa21404fb9cbd5bf1a140870445b5fd53 Mon Sep 17 00:00:00 2001 From: Ngan Pham Date: Thu, 15 Aug 2024 16:34:42 -0700 Subject: [PATCH 3/3] Remove Ruby 3.0 from build matrix --- .github/workflows/build.yml | 1 - Changelog.md | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de73c90..fdbc541 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,6 @@ jobs: matrix: os: [ "ubuntu-20.04" ] ruby: - - '3.0' - '3.1' - '3.2' - '3.3' diff --git a/Changelog.md b/Changelog.md index 5a184fe..2dd7b7d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,10 +1,13 @@ # Changelog +# Unreleased +- Remove Ruby 3.0 from build matrix + ## 9.4.2 - - Fix db:prepare:with_data task +- Fix db:prepare:with_data task ## 9.4.1 - - Add db:prepare task +- Add db:prepare task ## 9.4.0 - Reset model schema cache before each data migration https://github.com/ilyakatz/data-migrate/pull/307