Skip to content

Commit

Permalink
Merge pull request #31 from uxxman/allow_ruby_3.3.0
Browse files Browse the repository at this point in the history
Adding support for ruby 3.3.0
  • Loading branch information
jydli committed Jan 10, 2024
2 parents 1d90292 + 68a52fe commit e874c7d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
ruby_version: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
ruby_version: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.3.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added

* Support for Ruby 3.3

## [2.2.0] - 2023-01-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby_audit/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RubyAudit
VERSION = '2.2.0'.freeze
VERSION = '2.3.0'.freeze
end
2 changes: 1 addition & 1 deletion ruby_audit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/civisanalytics/ruby_audit'
spec.license = 'GPL-3.0-or-later'

spec.required_ruby_version = ['>= 2.5', '< 3.3']
spec.required_ruby_version = ['>= 2.5', '< 3.4']
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Expand Down

0 comments on commit e874c7d

Please sign in to comment.