Skip to content

Commit baf0ad5

Browse files
authored
Bump version (#12)
1 parent 6057708 commit baf0ad5

File tree

6 files changed

+116
-10
lines changed

6 files changed

+116
-10
lines changed

Diff for: .github/workflows/test.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ on:
77
branches: [main]
88

99
jobs:
10-
ruby:
10+
test:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
ruby-version: ["2.6", "2.7", "3.0"]
14+
ruby-version: ["2.7", "3.0", "3.1"]
15+
gemfiles: ["Gemfile", "Gemfile.rails6"]
16+
env:
17+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
1518
steps:
1619
- uses: actions/checkout@v3
1720
- uses: ruby/setup-ruby@v1

Diff for: .rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inherit_mode:
55
merge:
66
- Exclude
77
AllCops:
8-
TargetRubyVersion: "2.6"
8+
TargetRubyVersion: "2.7"
99

1010
Security/MarshalLoad:
1111
Enabled: false

Diff for: Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
activesupport_cache_database (0.2.1)
5-
activerecord (>= 5.0)
6-
activesupport (>= 5.0)
4+
activesupport_cache_database (0.3.0)
5+
activerecord (>= 6.0)
6+
activesupport (>= 6.0)
77

88
GEM
99
remote: https://rubygems.org/

Diff for: Gemfile.rails6

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source 'https://rubygems.org'
2+
gemspec
3+
4+
gem 'activesupport', '~> 6.1'
5+
gem 'activerecord', '~> 6.1'

Diff for: Gemfile.rails6.lock

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
PATH
2+
remote: .
3+
specs:
4+
activesupport_cache_database (0.3.0)
5+
activerecord (>= 5.0)
6+
activesupport (>= 5.0)
7+
8+
GEM
9+
remote: https://rubygems.org/
10+
specs:
11+
activemodel (6.1.6.1)
12+
activesupport (= 6.1.6.1)
13+
activerecord (6.1.6.1)
14+
activemodel (= 6.1.6.1)
15+
activesupport (= 6.1.6.1)
16+
activesupport (6.1.6.1)
17+
concurrent-ruby (~> 1.0, >= 1.0.2)
18+
i18n (>= 1.6, < 2)
19+
minitest (>= 5.1)
20+
tzinfo (~> 2.0)
21+
zeitwerk (~> 2.3)
22+
ast (2.4.2)
23+
concurrent-ruby (1.1.10)
24+
diff-lcs (1.5.0)
25+
i18n (1.11.0)
26+
concurrent-ruby (~> 1.0)
27+
json (2.6.2)
28+
minitest (5.16.2)
29+
mysql2 (0.5.4)
30+
parallel (1.22.1)
31+
parser (3.1.2.0)
32+
ast (~> 2.4.1)
33+
pg (1.4.1)
34+
rainbow (3.1.1)
35+
rake (13.0.6)
36+
regexp_parser (2.5.0)
37+
rexml (3.2.5)
38+
rspec (3.11.0)
39+
rspec-core (~> 3.11.0)
40+
rspec-expectations (~> 3.11.0)
41+
rspec-mocks (~> 3.11.0)
42+
rspec-core (3.11.0)
43+
rspec-support (~> 3.11.0)
44+
rspec-expectations (3.11.0)
45+
diff-lcs (>= 1.2.0, < 2.0)
46+
rspec-support (~> 3.11.0)
47+
rspec-mocks (3.11.1)
48+
diff-lcs (>= 1.2.0, < 2.0)
49+
rspec-support (~> 3.11.0)
50+
rspec-support (3.11.0)
51+
rubocop (1.31.2)
52+
json (~> 2.3)
53+
parallel (~> 1.10)
54+
parser (>= 3.1.0.0)
55+
rainbow (>= 2.2.2, < 4.0)
56+
regexp_parser (>= 1.8, < 3.0)
57+
rexml (>= 3.2.5, < 4.0)
58+
rubocop-ast (>= 1.18.0, < 2.0)
59+
ruby-progressbar (~> 1.7)
60+
unicode-display_width (>= 1.4.0, < 3.0)
61+
rubocop-ast (1.19.1)
62+
parser (>= 3.1.1.0)
63+
rubocop-bsm (0.6.0)
64+
rubocop (~> 1.0)
65+
rubocop-performance
66+
rubocop-rake
67+
rubocop-rspec
68+
rubocop-performance (1.14.2)
69+
rubocop (>= 1.7.0, < 2.0)
70+
rubocop-ast (>= 0.4.0)
71+
rubocop-rake (0.6.0)
72+
rubocop (~> 1.0)
73+
rubocop-rspec (2.12.1)
74+
rubocop (~> 1.31)
75+
ruby-progressbar (1.11.0)
76+
sqlite3 (1.4.4)
77+
tzinfo (2.0.4)
78+
concurrent-ruby (~> 1.0)
79+
unicode-display_width (2.2.0)
80+
zeitwerk (2.6.0)
81+
82+
PLATFORMS
83+
x86_64-linux
84+
85+
DEPENDENCIES
86+
activerecord (~> 6.1)
87+
activesupport (~> 6.1)
88+
activesupport_cache_database!
89+
bundler
90+
mysql2
91+
pg
92+
rake
93+
rspec
94+
rubocop-bsm
95+
sqlite3
96+
97+
BUNDLED WITH
98+
2.3.16

Diff for: activesupport_cache_database.gemspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'activesupport_cache_database'
3-
s.version = '0.2.1'
3+
s.version = '0.3.0'
44
s.authors = ['Black Square Media Ltd']
55
s.email = ['[email protected]']
66
s.summary = %(ActiveSupport::Cache::Store implementation backed by ActiveRecord.)
@@ -10,10 +10,10 @@ Gem::Specification.new do |s|
1010

1111
s.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^spec/}) }
1212
s.require_paths = ['lib']
13-
s.required_ruby_version = '>= 2.6'
13+
s.required_ruby_version = '>= 2.7'
1414

15-
s.add_dependency 'activerecord', '>= 5.0'
16-
s.add_dependency 'activesupport', '>= 5.0'
15+
s.add_dependency 'activerecord', '>= 6.0'
16+
s.add_dependency 'activesupport', '>= 6.0'
1717

1818
s.add_development_dependency 'bundler'
1919
s.add_development_dependency 'mysql2'

0 commit comments

Comments
 (0)