From dda9fc5ccf29099e3fbfa4b0799073a35e0330a1 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 29 Feb 2024 14:04:02 +0900 Subject: [PATCH 1/3] Drop to support Ruby 2.7 --- .github/workflows/ci.yml | 2 +- lib/tdiary/tasks/release.rake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d3fb7574..b2fc8ac29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: name: build (${{ matrix.ruby }}/${{ matrix.test_mode }}) strategy: matrix: - ruby: [ '3.3', '3.2', '3.1', '3.0', '2.7' ] + ruby: [ '3.3', '3.2', '3.1', '3.0' ] test_mode: [ rack, gem ] runs-on: ubuntu-latest steps: diff --git a/lib/tdiary/tasks/release.rake b/lib/tdiary/tasks/release.rake index d9e8c9e87..30658be7e 100644 --- a/lib/tdiary/tasks/release.rake +++ b/lib/tdiary/tasks/release.rake @@ -50,7 +50,7 @@ begin end Dir.chdir '.bundle/ruby' do - versions = %w(2.7.0 3.0.0 3.1.0) + versions = %w(3.0.0 3.1.0 3.2.0 3.3.0) current = `ls`.chomp versions.each {|version| FileUtils.cp_r current, version unless current == version From 4a56e0e1141b56cdc5ca177fec53d8b162095233 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 29 Feb 2024 14:18:42 +0900 Subject: [PATCH 2/3] Added entry for 5.3.0 --- ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index f167154bb..8301c6719 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-02-29 Hiroshi SHIBATA + * support Ruby 3.2 and 3.3. + * drop to support Ruby 2.7. + * release 5.3.0 + 2022-11-29 Tada, Tadashi * support rack 3.x * support dalli 3.x From d460e082ea22d21a6b9a09e737ce1d7c19f76807 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 29 Feb 2024 14:21:38 +0900 Subject: [PATCH 3/3] Bump up 5.3.0 --- lib/tdiary/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tdiary/version.rb b/lib/tdiary/version.rb index 24f6b8e51..8467a6526 100644 --- a/lib/tdiary/version.rb +++ b/lib/tdiary/version.rb @@ -1,3 +1,3 @@ module TDiary - VERSION = '5.2.4' + VERSION = '5.3.0' end