diff --git a/.rubocop.yml b/.rubocop.yml index ae4b5901..7da3ad06 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,7 +1,7 @@ AllCops: NewCops: enable SuggestExtensions: false - TargetRubyVersion: 3.1 + TargetRubyVersion: 3.2 Style/WordArray: Enabled: true diff --git a/.standard.yml b/.standard.yml index 9a074ea6..6ef40670 100644 --- a/.standard.yml +++ b/.standard.yml @@ -1,4 +1,4 @@ -ruby_version: 3.1.0 +ruby_version: 3.2.0 ignore: - 'lib/eve_online/esi/base.rb': diff --git a/CHANGELOG.md b/CHANGELOG.md index c15dd556..d5724211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## main +## v0.45.0 * Rails 7.1 and 7.2 * Ruby 3.3 diff --git a/Gemfile.lock b/Gemfile.lock index 2084263d..756b8e71 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - eve_online (0.44.0) + eve_online (0.45.0) activesupport (>= 7.1.0) faraday (>= 2.3.0) diff --git a/LICENSE.txt b/LICENSE.txt index 38cb86c7..d5a22935 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015-2023 Ihor Zubkov +Copyright (c) 2015-2024 Ihor Zubkov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index df12f760..2743dfbe 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,6 @@ gem install eve_online ## Supported ruby versions -* MRI 3.1 * MRI 3.2 * MRI 3.3 diff --git a/lib/eve_online/version.rb b/lib/eve_online/version.rb index 0c135eae..884f8e77 100644 --- a/lib/eve_online/version.rb +++ b/lib/eve_online/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module EveOnline - VERSION = Gem::Version.new("0.44.0") + VERSION = Gem::Version.new("0.45.0") end