From 68a52fe6e599df6575b1389c39f4327aa79d2858 Mon Sep 17 00:00:00 2001 From: Usman Date: Tue, 26 Dec 2023 08:18:36 +0100 Subject: [PATCH] Adding support for ruby 3.3.0 --- .github/workflows/test.yml | 2 +- .ruby-version | 2 +- CHANGELOG.md | 4 ++++ lib/ruby_audit/version.rb | 2 +- ruby_audit.gemspec | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 16becd5..cd0271a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/.ruby-version b/.ruby-version index 944880f..15a2799 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.0 +3.3.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a9742d..81b9d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lib/ruby_audit/version.rb b/lib/ruby_audit/version.rb index d0b662e..05ee0b6 100644 --- a/lib/ruby_audit/version.rb +++ b/lib/ruby_audit/version.rb @@ -1,3 +1,3 @@ module RubyAudit - VERSION = '2.2.0'.freeze + VERSION = '2.3.0'.freeze end diff --git a/ruby_audit.gemspec b/ruby_audit.gemspec index 3442a1d..52beef2 100644 --- a/ruby_audit.gemspec +++ b/ruby_audit.gemspec @@ -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) }