Skip to content

Commit 93e1334

Browse files
committed
release version 2.7.0
1 parent 52d8c41 commit 93e1334

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 2.7.0 (2025-11-03)
6+
* Removed: Support for Ruby < 3.1, Rails < 7.
7+
* Fixed: Exception when using ActiveType::Record with Rails 8.1.
8+
59
## 2.6.5 (2025-10-16)
610

711
* Fixed: ActiveType::Object and ActiveType::Record are now serialized/deserialized correctly using Marshal.dump/Marshal.load

Gemfile.7.1.sqlite3.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.7.2.mysql2.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.7.2.pg.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.7.2.sqlite3.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.8.0.sqlite3.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.8.1.pg.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.4)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

Gemfile.8.1.sqlite3.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_type (2.6.5)
4+
active_type (2.7.0)
55
activerecord (>= 6.1)
66

77
GEM

lib/active_type/version.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ActiveType
2-
VERSION = '2.6.5'
4+
VERSION = '2.7.0'
35
end

0 commit comments

Comments
 (0)