From e29ea9d271d43709dbaad19bf1930bbd0e6a9c54 Mon Sep 17 00:00:00 2001 From: Matt Tanous Date: Sat, 22 Mar 2025 19:12:01 -0400 Subject: [PATCH] Bump minimum Ruby version to 3.2 and gem version to 0.8 --- cognito_token_verifier.gemspec | 2 +- lib/cognito_token_verifier/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cognito_token_verifier.gemspec b/cognito_token_verifier.gemspec index b353c0a..a7c87dd 100644 --- a/cognito_token_verifier.gemspec +++ b/cognito_token_verifier.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.summary = %q{Verify and parse AWS Cognito JWTs to authenticate endpoints} spec.homepage = "https://github.com/CodingAnarchy/cognito_token_verifier" spec.license = "MIT" - spec.required_ruby_version = ">= 2.6.0" + spec.required_ruby_version = ">= 3.2.0" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. diff --git a/lib/cognito_token_verifier/version.rb b/lib/cognito_token_verifier/version.rb index b4133bd..6dda956 100644 --- a/lib/cognito_token_verifier/version.rb +++ b/lib/cognito_token_verifier/version.rb @@ -1,3 +1,3 @@ module CognitoTokenVerifier - VERSION = "0.7.0" + VERSION = "0.8.0" end