Skip to content

Commit 10db39c

Browse files
authored
Merge pull request #18 from tithely/IN-2565/rails-7.2.2.1
IN-2565 - Rails 7.2.2.1
2 parents a7b6f49 + 1505aed commit 10db39c

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,19 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10-
## [Unreleased]
10+
## [4.2.0] - 2025-02-18
11+
12+
### Changed
13+
14+
1. Update ActiveSupport Version to support Rails 7.2.2.1. (IN-2565)
15+
16+
## [4.1.1] - 2024-12-19
1117

1218
### Added
1319

1420
1. Adds `Entity::Fund` `active?` and `default?` interrogatives
1521

16-
## [4.0.1] - 2024-09-13
22+
## [4.0.1] - 2024-09-16
1723

1824
This version adds support for Ruby 3.3.5. No real changes were required. We just needed to add some gems to the gemspec
1925
to silence deprecation warnings.

Gemfile.lock

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
faithteams-api (4.1.1)
5-
activesupport (>= 7.0.8, <= 7.1.5.1)
4+
faithteams-api (4.2.0)
5+
activesupport (~> 7.2.2)
66
http (~> 5.1)
77
logger (~> 1.6.1)
88
ostruct (~> 0.6.0)
@@ -11,19 +11,18 @@ PATH
1111
GEM
1212
remote: https://rubygems.org/
1313
specs:
14-
activesupport (7.1.5.1)
14+
activesupport (7.2.2.1)
1515
base64
1616
benchmark (>= 0.3)
1717
bigdecimal
18-
concurrent-ruby (~> 1.0, >= 1.0.2)
18+
concurrent-ruby (~> 1.0, >= 1.3.1)
1919
connection_pool (>= 2.2.5)
2020
drb
2121
i18n (>= 1.6, < 2)
2222
logger (>= 1.4.2)
2323
minitest (>= 5.1)
24-
mutex_m
2524
securerandom (>= 0.3)
26-
tzinfo (~> 2.0)
25+
tzinfo (~> 2.0, >= 2.0.5)
2726
addressable (2.8.7)
2827
public_suffix (>= 2.0.2, < 7.0)
2928
ast (2.4.2)
@@ -84,7 +83,6 @@ GEM
8483
lumberjack (1.2.10)
8584
method_source (1.1.0)
8685
minitest (5.25.4)
87-
mutex_m (0.3.0)
8886
nenv (0.3.0)
8987
notiffany (0.1.3)
9088
nenv (~> 0.1)

faithteams-api.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
3232
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3333
spec.require_paths = ["lib"]
3434

35-
spec.add_dependency "activesupport", ">= 7.0.8", "<= 7.1.5.1"
35+
spec.add_dependency "activesupport", "~> 7.2.2"
3636
spec.add_dependency "http", "~> 5.1"
3737
spec.add_dependency "logger", "~> 1.6.1"
3838
spec.add_dependency "ostruct", "~> 0.6.0"

lib/faithteams/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module FaithTeams
44
# Current version number.
5-
VERSION = "4.1.1"
5+
VERSION = "4.2.0"
66
end

0 commit comments

Comments
 (0)