Skip to content

Commit 1d90292

Browse files
authored
Merge pull request #27 from adamzapasnik/support-3.2-ruby
Allow 3.2
2 parents b825c8d + 725d866 commit 1d90292

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
strategy:
1414
matrix:
15-
ruby_version: [2.5, 2.6, 2.7, '3.0', 3.1]
15+
ruby_version: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v2

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.2.0

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [2.2.0] - 2023-01-05
9+
10+
### Added
11+
12+
* Support for Ruby 3.2
13+
814
## [2.1.0] - 2022-02-23
915

1016
### Added

lib/ruby_audit/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module RubyAudit
2-
VERSION = '2.1.0'.freeze
2+
VERSION = '2.2.0'.freeze
33
end

ruby_audit.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Gem::Specification.new do |spec|
1717
spec.homepage = 'https://github.com/civisanalytics/ruby_audit'
1818
spec.license = 'GPL-3.0-or-later'
1919

20-
spec.required_ruby_version = ['>= 2.5', '< 3.2']
20+
spec.required_ruby_version = ['>= 2.5', '< 3.3']
2121
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
2222
spec.bindir = 'exe'
2323
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2424
spec.require_paths = ['lib']
2525

2626
spec.add_dependency 'bundler-audit', '~> 0.9.0'
27-
spec.add_development_dependency 'pry', '~> 0.13.0'
27+
spec.add_development_dependency 'pry', '~> 0.14.1'
2828
spec.add_development_dependency 'rake', '~> 13.0'
2929
spec.add_development_dependency 'rspec', '~> 3.9'
3030
spec.add_development_dependency 'rubocop', '~> 1.9.1'

0 commit comments

Comments
 (0)