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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [v3.0.0](https://github.com/infinum/enumerations/tree/v3.0.0) (2026-01-16)
[Full Changelog](https://github.com/infinum/enumerations/compare/v2.6.0...v3.0.0)

**Breaking change:**

- enumeration classes with overridden `to_s` method might not work as expected anymore
(previously, overriding `to_s` would affect the value saved to the database, now it doesn't anymore)

**Implemented enhancements:**

- Drop support for ruby 2.6 and 2.7, only versions '>= 3.0' are now supported
- Resolve `ActiveSupport::Multibyte::Chars` deprecation warning

## [v2.6.0](https://github.com/infinum/enumerations/tree/v2.6.0) (2024-10-22)
[Full Changelog](https://github.com/infinum/enumerations/compare/v2.5.4...v2.6.0)

Expand Down
4 changes: 3 additions & 1 deletion lib/enumerations/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# frozen_string_literal: true

module Enumerations
VERSION = '2.6.0'.freeze
VERSION = '3.0.0'
end