File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,19 @@ All notable changes to this project will be documented in this file.
7
7
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
8
8
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
9
9
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
11
17
12
18
### Added
13
19
14
20
1 . Adds ` Entity::Fund ` ` active? ` and ` default? ` interrogatives
15
21
16
- ## [ 4.0.1] - 2024-09-13
22
+ ## [ 4.0.1] - 2024-09-16
17
23
18
24
This version adds support for Ruby 3.3.5. No real changes were required. We just needed to add some gems to the gemspec
19
25
to silence deprecation warnings.
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
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 )
6
6
http (~> 5.1 )
7
7
logger (~> 1.6.1 )
8
8
ostruct (~> 0.6.0 )
11
11
GEM
12
12
remote: https://rubygems.org/
13
13
specs:
14
- activesupport (7.1.5 .1 )
14
+ activesupport (7.2.2 .1 )
15
15
base64
16
16
benchmark (>= 0.3 )
17
17
bigdecimal
18
- concurrent-ruby (~> 1.0 , >= 1.0.2 )
18
+ concurrent-ruby (~> 1.0 , >= 1.3.1 )
19
19
connection_pool (>= 2.2.5 )
20
20
drb
21
21
i18n (>= 1.6 , < 2 )
22
22
logger (>= 1.4.2 )
23
23
minitest (>= 5.1 )
24
- mutex_m
25
24
securerandom (>= 0.3 )
26
- tzinfo (~> 2.0 )
25
+ tzinfo (~> 2.0 , >= 2.0.5 )
27
26
addressable (2.8.7 )
28
27
public_suffix (>= 2.0.2 , < 7.0 )
29
28
ast (2.4.2 )
84
83
lumberjack (1.2.10 )
85
84
method_source (1.1.0 )
86
85
minitest (5.25.4 )
87
- mutex_m (0.3.0 )
88
86
nenv (0.3.0 )
89
87
notiffany (0.1.3 )
90
88
nenv (~> 0.1 )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
33
33
spec . require_paths = [ "lib" ]
34
34
35
- spec . add_dependency "activesupport" , ">= 7.0.8" , "<= 7.1.5.1 "
35
+ spec . add_dependency "activesupport" , "~> 7.2.2 "
36
36
spec . add_dependency "http" , "~> 5.1"
37
37
spec . add_dependency "logger" , "~> 1.6.1"
38
38
spec . add_dependency "ostruct" , "~> 0.6.0"
Original file line number Diff line number Diff line change 2
2
3
3
module FaithTeams
4
4
# Current version number.
5
- VERSION = "4.1.1 "
5
+ VERSION = "4.2.0 "
6
6
end
You can’t perform that action at this time.
0 commit comments