Skip to content

Commit f56b3bd

Browse files
authored
Merge pull request #1138 from tdiary/release-5-3-0
Release 5.3.0
2 parents 4e3e812 + d460e08 commit f56b3bd

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: build (${{ matrix.ruby }}/${{ matrix.test_mode }})
88
strategy:
99
matrix:
10-
ruby: [ '3.3', '3.2', '3.1', '3.0', '2.7' ]
10+
ruby: [ '3.3', '3.2', '3.1', '3.0' ]
1111
test_mode: [ rack, gem ]
1212
runs-on: ubuntu-latest
1313
steps:

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-02-29 Hiroshi SHIBATA <[email protected]>
2+
* support Ruby 3.2 and 3.3.
3+
* drop to support Ruby 2.7.
4+
* release 5.3.0
5+
16
2022-11-29 Tada, Tadashi <[email protected]>
27
* support rack 3.x
38
* support dalli 3.x

lib/tdiary/tasks/release.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ begin
5050
end
5151

5252
Dir.chdir '.bundle/ruby' do
53-
versions = %w(2.7.0 3.0.0 3.1.0)
53+
versions = %w(3.0.0 3.1.0 3.2.0 3.3.0)
5454
current = `ls`.chomp
5555
versions.each {|version|
5656
FileUtils.cp_r current, version unless current == version

lib/tdiary/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module TDiary
2-
VERSION = '5.2.4'
2+
VERSION = '5.3.0'
33
end

0 commit comments

Comments
 (0)