Skip to content

Commit

Permalink
Ruby 3.3 released
Browse files Browse the repository at this point in the history
  • Loading branch information
znz committed Dec 26, 2023
1 parent 17433ae commit cfff92e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# coding: utf-8
OLD_VERSIONS = %w[
1.8.7 1.9.3
2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0
2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 2.7.0
]
SUPPORTED_VERSIONS = %w[2.7.0 3.0 3.1 3.2]
UNRELEASED_VERSIONS = %w[3.3]
SUPPORTED_VERSIONS = %w[3.0 3.1 3.2 3.3]
UNRELEASED_VERSIONS = %w[3.4]
ALL_VERSIONS = [*OLD_VERSIONS, *SUPPORTED_VERSIONS, *UNRELEASED_VERSIONS]
CI_VERSIONS = [*SUPPORTED_VERSIONS, *UNRELEASED_VERSIONS]
HTML_DIRECTORY_BASE = ENV.fetch("HTML_DIRECTORY_BASE", "/tmp/html/")
Expand Down
5 changes: 4 additions & 1 deletion refm/doc/index.rd
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
= オブジェクト指向スクリプト言語 Ruby リファレンスマニュアル

* Ruby オフィシャルサイト [[url:https://www.ruby-lang.org/ja/]]
#@since 3.3
#@since 3.4
* 開発版対応リファレンス
#@end
#@if("3.3" <= version and version < "3.4")
* version 3.3 対応リファレンス
#@end
#@if("3.2" <= version and version < "3.3")
* version 3.2 対応リファレンス
#@end
Expand Down

0 comments on commit cfff92e

Please sign in to comment.