From 55688f081b14edd8c1591fd4690139d5d2a6dc52 Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Mon, 25 Mar 2024 14:31:33 -0600 Subject: [PATCH] Bump version to 4.0.0.rc1 --- CHANGELOG.md | 12 ++++++++---- CONTRIBUTING.md | 4 ++++ Gemfile.lock | 2 +- lib/high_voltage/version.rb | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ec8c51..f970ab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,18 @@ # Changelog -## [Unreleased] +## [4.0.0.rc1] - 2024-03-25 -### Removed +This is a release candidate. Please report any [issues](https://github.com/thoughtbot/high_voltage/issues/new) you might encounter when installing this version. + +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 Travis CI and replaced with Github Actions - 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 -- Add note about the project being in maintenance-mode ## [3.1.2] - 2019-05-20 @@ -101,6 +104,7 @@ - New RootRoute constraint. - Updated README, with new TravisCI url. +[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 [3.1.0]: https://github.com/thoughtbot/high_voltage/compare/v3.0.0...v3.1.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 296debd..7e3368b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,6 +5,10 @@ We welcome pull requests from everyone. By participating in this project, you agree to abide by the thoughtbot [code of conduct]. +Note that this project is in maintenance-mode. We’re not actively adding new features. Bug +fixes and other contributions to keep it compatible with the latest Ruby and Rails versions +are welcomed. + We expect everyone to follow the code of conduct anywhere in thoughtbot's project codebases, issue trackers, chat-rooms, and mailing lists. diff --git a/Gemfile.lock b/Gemfile.lock index 6461ae0..040d8f2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - high_voltage (3.1.2) + high_voltage (4.0.0.rc1) GEM remote: https://rubygems.org/ diff --git a/lib/high_voltage/version.rb b/lib/high_voltage/version.rb index 56fc98c..efb246b 100644 --- a/lib/high_voltage/version.rb +++ b/lib/high_voltage/version.rb @@ -1,3 +1,3 @@ module HighVoltage - VERSION = "3.1.2".freeze + VERSION = "4.0.0.rc1".freeze end