diff --git a/.rubocop.yml b/.rubocop.yml index 81b0123..64c7130 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -9,7 +9,7 @@ require: - rubocop-rspec inherit_gem: - standard: config/ruby-3.0.yml + standard: config/ruby-3.1.yml AllCops: Exclude: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a0729d..a181a36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ This makes the API consistent with policy expressions. `attributes` is still supported for backwards compatibility, but is now deprecated. +### Removed + +- Support for Ruby 3.0 ([#158](https://github.com/cerbos/cerbos-sdk-ruby/pull/158)) + ## [0.8.0] - 2024-01-12 ### Added diff --git a/README.md b/README.md index 6ae661c..18e3944 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The Cerbos Ruby SDK makes it easy to interact with the Cerbos PDP from your Ruby ## Prerequisites - Cerbos 0.16+ -- Ruby 3.0+ +- Ruby 3.1+ ## Installation diff --git a/bin/test-matrix b/bin/test-matrix index 3d84d3f..5d930ab 100755 --- a/bin/test-matrix +++ b/bin/test-matrix @@ -5,7 +5,7 @@ require "json" require "net/http" # We support non-end-of-life Ruby versions: https://www.ruby-lang.org/en/downloads/branches/ -ruby_versions = ["3.0", "3.1", "3.2", "3.3"] +ruby_versions = ["3.1", "3.2", "3.3"] latest_ruby_version = ruby_versions.last diff --git a/cerbos.gemspec b/cerbos.gemspec index ebeff22..cc88824 100644 --- a/cerbos.gemspec +++ b/cerbos.gemspec @@ -31,6 +31,6 @@ Gem::Specification.new do |spec| "yard_extensions.rb" ] - spec.required_ruby_version = ">= 3.0.0" + spec.required_ruby_version = ">= 3.1.0" spec.add_dependency "grpc", "~> 1.46" end