From dbb8a1fe33b0ba70c86e0d5642e8ddc2766fdce8 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Thu, 10 Oct 2024 19:49:43 +0200 Subject: [PATCH 1/5] Minimal Ruby version 3.2 --- .rubocop.yml | 2 +- .standard.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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': From f3dd5809d7ec1538d4769a99d092d91f5b91a0a2 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Thu, 10 Oct 2024 19:49:53 +0200 Subject: [PATCH 2/5] Bump year --- LICENSE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 8c82f854530d301df56b0317edf566d4e9898d18 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Thu, 10 Oct 2024 19:50:02 +0200 Subject: [PATCH 3/5] Cleanup --- README.md | 1 - 1 file changed, 1 deletion(-) 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 From 452214b997a8e2c9f0bb9893d3c2b3d9c963c7d7 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Thu, 10 Oct 2024 19:50:41 +0200 Subject: [PATCH 4/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 8e6407140f538004e5dc4b556416b80f3a40b57d Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Thu, 10 Oct 2024 19:51:25 +0200 Subject: [PATCH 5/5] v0.45.0 --- Gemfile.lock | 2 +- lib/eve_online/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/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