Skip to content

Commit

Permalink
Update activerecord and activemodel gems
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Sep 8, 2024
1 parent 8ff57b3 commit c34035d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-20.04, macos-latest, macos-13, macos-12, windows-latest, windows-2019]
ruby: ['3.0.7', '3.1', '3.2', '3.3']
ruby: ['3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.7
3.1.0
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## [3.0.5] - 2024-09-08

### Changes
[x] Update activerecord and activemodel.

## [3.0.4] - 2024-09-08

### Changes
Expand Down
20 changes: 11 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
dsu (3.0.4)
activemodel (>= 7.0.8, < 8.0)
activesupport (>= 7.0.8, < 8.0)
activemodel (>= 7.2.1, < 8.0)
activesupport (>= 7.2.1, < 8.0)
colorize (>= 1.1, < 2.0)
os (>= 1.1, < 2.0)
thor (>= 1.2, < 2.0)
Expand All @@ -13,18 +13,19 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (7.1.4)
activesupport (= 7.1.4)
activesupport (7.1.4)
activemodel (7.2.1)
activesupport (= 7.2.1)
activesupport (7.2.1)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
mutex_m
tzinfo (~> 2.0)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.8)
Expand Down Expand Up @@ -71,9 +72,9 @@ GEM
concurrent-ruby (~> 1.0)
json (2.7.2)
language_server-protocol (3.17.0.3)
logger (1.6.1)
method_source (1.1.0)
minitest (5.25.1)
mutex_m (0.2.0)
os (1.1.4)
parallel (1.26.3)
parser (3.3.5.0)
Expand Down Expand Up @@ -130,6 +131,7 @@ GEM
rubocop-rspec (3.0.5)
rubocop (~> 1.61)
ruby-progressbar (1.13.0)
securerandom (0.3.1)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ The [dsu wiki](https://github.com/gangelo/dsu/wiki) is currently the gold standa

# Supported ruby versions
`dsu` _should_ work with any ruby version `['>= 3.0.7', '< 4.0']`; however, `dsu` is currently tested against the ubuntu-latest, macos-latest and windows-latest platforms, using the following ruby versions:
- 3.0.7
- 3.1
- 3.2
- 3.3
Expand Down
6 changes: 3 additions & 3 deletions dsu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
DESC
spec.homepage = 'https://github.com/gangelo/dsu'
spec.license = 'MIT'
spec.required_ruby_version = ['>= 3.0.7', '< 4.0']
spec.required_ruby_version = ['>= 3.1.0', '< 4.0']

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['documentation_uri'] = 'https://github.com/gangelo/dsu/wiki'
Expand All @@ -38,8 +38,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'activesupport', '>= 7.0.8', '< 8.0'
spec.add_dependency 'activemodel', '>= 7.0.8', '< 8.0'
spec.add_dependency 'activesupport', '>= 7.2.1', '< 8.0'
spec.add_dependency 'activemodel', '>= 7.2.1', '< 8.0'
spec.add_dependency 'colorize', '>= 1.1', '< 2.0'
spec.add_dependency 'os', '>= 1.1', '< 2.0'
spec.add_dependency 'thor', '>= 1.2', '< 2.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/dsu/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Dsu
VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/
VERSION = '3.0.4'
VERSION = '3.0.5'
end

0 comments on commit c34035d

Please sign in to comment.