-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create release for 3.3.6 * Update downloads.yml and releases.yml * Write up "Ruby 3.3.6 Released" * Add Release Schedule --------- Co-authored-by: GitHub Actions Bot <github-actions[bot]@users.noreply.github.com> Co-authored-by: Takashi Kokubun <[email protected]>
- Loading branch information
1 parent
9e332b2
commit 7303cbc
Showing
3 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ preview: | |
|
||
stable: | ||
|
||
- 3.3.5 | ||
- 3.3.6 | ||
- 3.2.6 | ||
|
||
# optional | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
layout: news_post | ||
title: "Ruby 3.3.6 Released" | ||
author: k0kubun | ||
translator: | ||
date: 2024-11-05 04:25:00 +0000 | ||
lang: en | ||
--- | ||
|
||
Ruby 3.3.6 has been released. | ||
|
||
This is a routine update that includes minor bug fixes. | ||
It also stops warning missing default gem dependencies that will be bundled gems in Ruby 3.5. | ||
For more details, please refer to [the release notes on GitHub](https://github.com/ruby/ruby/releases/tag/v3_3_6). | ||
|
||
## Release Schedule | ||
|
||
As previously [announced](https://www.ruby-lang.org/en/news/2024/07/09/ruby-3-3-4-released/), we intend to release the latest stable Ruby version (currently Ruby 3.3) every 2 months following a `.1` release. | ||
|
||
We expect to release Ruby 3.3.7 on January 7th. If any significant changes arise that impact a large number of users, we may release a new version earlier than scheduled. | ||
|
||
## Download | ||
|
||
{% assign release = site.data.releases | where: "version", "3.3.6" | first %} | ||
|
||
* <{{ release.url.gz }}> | ||
|
||
SIZE: {{ release.size.gz }} | ||
SHA1: {{ release.sha1.gz }} | ||
SHA256: {{ release.sha256.gz }} | ||
SHA512: {{ release.sha512.gz }} | ||
|
||
* <{{ release.url.xz }}> | ||
|
||
SIZE: {{ release.size.xz }} | ||
SHA1: {{ release.sha1.xz }} | ||
SHA256: {{ release.sha256.xz }} | ||
SHA512: {{ release.sha512.xz }} | ||
|
||
* <{{ release.url.zip }}> | ||
|
||
SIZE: {{ release.size.zip }} | ||
SHA1: {{ release.sha1.zip }} | ||
SHA256: {{ release.sha256.zip }} | ||
SHA512: {{ release.sha512.zip }} | ||
|
||
## Release Comment | ||
|
||
Many committers, developers, and users who provided bug reports helped us make this release. | ||
Thanks for their contributions. |