From 08e45c4fa5cea58834e2d8dfb4400ff8b428b538 Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Fri, 31 May 2024 15:35:42 -0600 Subject: [PATCH 1/2] Bump version to 4.0.0 --- Gemfile.lock | 2 +- lib/high_voltage/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 1eac9c6..7ab7a55 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - high_voltage (4.0.0.rc1) + high_voltage (4.0.0) GEM remote: https://rubygems.org/ diff --git a/lib/high_voltage/version.rb b/lib/high_voltage/version.rb index efb246b..4b6f0dc 100644 --- a/lib/high_voltage/version.rb +++ b/lib/high_voltage/version.rb @@ -1,3 +1,3 @@ module HighVoltage - VERSION = "4.0.0.rc1".freeze + VERSION = "4.0.0".freeze end From 32e248e5f56d480e59238f9db576797bd10968d7 Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Fri, 31 May 2024 15:39:09 -0600 Subject: [PATCH 2/2] Changelog and README updates --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f970ab2..826163c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [4.0.0] - 2024-05-31 + +This project is in maintenance-mode. We’re not actively adding new features, but we’ll fix bugs and keep it up to date, and compatible with the latest Ruby and Rails versions. + +Main changes: + +- Remove support for EOL'd Rails version 4.2 +- Remove support for EOL'd Rails versions 5.x +- Remove support for Travis CI and replaced with Github Actions +- Add support for Rails 7.1 +- Add Ruby's minimum version required to >= 3.0 + +## New Contributors + +* @denissellu made their first contribution in https://github.com/thoughtbot/high_voltage/pull/302 +* @keegnotrub made their first contribution in https://github.com/thoughtbot/high_voltage/pull/306 +* @stefannibrasil made their first contribution in https://github.com/thoughtbot/high_voltage/pull/311 +* @dependabot made their first contribution in https://github.com/thoughtbot/high_voltage/pull/313 + ## [4.0.0.rc1] - 2024-03-25 This is a release candidate. Please report any [issues](https://github.com/thoughtbot/high_voltage/issues/new) you might encounter when installing this version. @@ -104,6 +123,7 @@ Main changes: - New RootRoute constraint. - Updated README, with new TravisCI url. +[4.0.0]: https://github.com/thoughtbot/high_voltage/compare/v3.1.2...v4.0.0 [4.0.0.rc1]: https://github.com/thoughtbot/high_voltage/compare/v3.1.2...4.0.0.rc1 [3.1.2]: https://github.com/thoughtbot/high_voltage/compare/v3.1.1...v3.1.2 [3.1.1]: https://github.com/thoughtbot/high_voltage/compare/v3.1.0...v3.1.1 diff --git a/README.md b/README.md index 5d7b750..ef1ff1e 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ You can run: Or you can include in your Gemfile: ```ruby -gem 'high_voltage', '~> 3.1.2' +gem 'high_voltage', '~> 4.0.0' ``` ## Usage