From b35ed1f33736493bfdcb247458a030af191096f1 Mon Sep 17 00:00:00 2001 From: Eric Milford Date: Fri, 24 Oct 2025 10:42:46 -0400 Subject: [PATCH] Release version 5.0.0 This release adds support for Rails 7.2 and 8.0, and removes support for EOL'd Rails 6.x versions. Adding support for Rails 8.0 added a backwards compatible change to the routes generation code. --- CHANGELOG.md | 12 ++++++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/high_voltage/version.rb | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 826163c..d36e9d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [5.0.0] - 2025-10-24 + +Main changes: + +- Remove support for EOL'd Rails 6.x versions +- Add support for Rails 7.2 and Rails 8.0 + +## New Contributors + +* @luizkowalski made their first contribution in https://github.com/thoughtbot/high_voltage/pull/336 + ## [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. @@ -123,6 +134,7 @@ Main changes: - New RootRoute constraint. - Updated README, with new TravisCI url. +[5.0.0]: https://github.com/thoughtbot/high_voltage/compare/v4.0.0...v5.0.0 [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 diff --git a/Gemfile.lock b/Gemfile.lock index b4044a4..b239a73 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - high_voltage (4.0.0) + high_voltage (5.0.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 69b090d..2f8fa40 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', '~> 4.0.0' +gem 'high_voltage', '~> 5.0.0' ``` ## Usage diff --git a/lib/high_voltage/version.rb b/lib/high_voltage/version.rb index 4b6f0dc..f8d3ffb 100644 --- a/lib/high_voltage/version.rb +++ b/lib/high_voltage/version.rb @@ -1,3 +1,3 @@ module HighVoltage - VERSION = "4.0.0".freeze + VERSION = "5.0.0".freeze end