Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
high_voltage (4.0.0)
high_voltage (5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/high_voltage/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module HighVoltage
VERSION = "4.0.0".freeze
VERSION = "5.0.0".freeze
end