Skip to content

Commit 9bf92e8

Browse files
committed
Release announcement for Ruby 3.3.4
1 parent 937fbe7 commit 9bf92e8

File tree

3 files changed

+82
-1
lines changed

3 files changed

+82
-1
lines changed

_data/downloads.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ preview:
88

99
stable:
1010

11-
- 3.3.3
11+
- 3.3.4
1212
- 3.2.4
1313

1414
# optional

_data/releases.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,30 @@
5252

5353
# 3.3 series
5454

55+
- version: 3.3.4
56+
date: 2024-07-09
57+
post: /en/news/2024/07/09/ruby-3-3-4-released/
58+
url:
59+
gz: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.gz
60+
zip: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.zip
61+
xz: https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.xz
62+
size:
63+
gz: 22110179
64+
zip: 26995054
65+
xz: 16366580
66+
sha1:
67+
gz: 408362dfb0413122e09d35bafdcced8922b54e71
68+
zip: dcd35f8d428e61807b5c95b6e2e79444fb32f214
69+
xz: 4fac2e1609535f71cbdbf9ab9dcea6f6e80a304a
70+
sha256:
71+
gz: fe6a30f97d54e029768f2ddf4923699c416cdbc3a6e96db3e2d5716c7db96a34
72+
zip: 3cf0ee03dd4c98e78e8ab5e191af926870415770ef4995088ed069caef639b2a
73+
xz: 1caaee9a5a6befef54bab67da68ace8d985e4fb59cd17ce23c28d9ab04f4ddad
74+
sha512:
75+
gz: 56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b
76+
zip: c24ca2e6b1114f9c489c049c07acccb0db0916c42c68ea90eaa9acc430973de68342df19710c58130fe264a291958c89e60815c5b00f91decf5a4d1d674a0b32
77+
xz: b26461a13ff82a08a282f10108028bb2a2e4a28da6182a291062fc54089c6655d79c22cc69d59156f9b11cb10a17fe8c69d489343fbae123a45f03361b95c9eb
78+
5579
- version: 3.3.3
5680
date: 2024-06-12
5781
post: /en/news/2024/06/12/ruby-3-3-3-released/
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: news_post
3+
title: "Ruby 3.3.4 Released"
4+
author: "k0kubun"
5+
translator:
6+
date: 2024-07-12 00:30:00 +0000
7+
lang: en
8+
---
9+
10+
Ruby 3.3.4 has been released.
11+
12+
This release fixes a regression in Ruby 3.3.3 that dependencies are missing in the gemspec
13+
of some bundled gems: `net-pop`, `net-ftp`, `net-imap`, and `prime`
14+
[[Bug #20581]](https://bugs.ruby-lang.org/issues/20581).
15+
The fix allows Bundler to successfully install those gems on platforms like Heroku.
16+
If your `bundle install` runs correctly now, you may not have this issue.
17+
18+
Other changes are mostly minor bug fixes.
19+
Please see the [GitHub releases](https://github.com/ruby/ruby/releases/tag/v3_3_4) for further details.
20+
21+
## Release Schedule
22+
23+
Going forward, we intend to release the latest stable Ruby version (currently Ruby 3.3) every 2 months after a `.1` release.
24+
For Ruby 3.3, 3.3.5 is supposed to be released on Sep 3rd, 3.3.6 on Nov 5th, and 3.3.7 on Jan 7th.
25+
26+
If there's any change that affects a considerable amount of people, e.g. Ruby 3.3.3 users on Heroku for this release,
27+
we may release a new version earlier than expected.
28+
29+
## Download
30+
31+
{% assign release = site.data.releases | where: "version", "3.3.4" | first %}
32+
33+
* <{{ release.url.gz }}>
34+
35+
SIZE: {{ release.size.gz }}
36+
SHA1: {{ release.sha1.gz }}
37+
SHA256: {{ release.sha256.gz }}
38+
SHA512: {{ release.sha512.gz }}
39+
40+
* <{{ release.url.xz }}>
41+
42+
SIZE: {{ release.size.xz }}
43+
SHA1: {{ release.sha1.xz }}
44+
SHA256: {{ release.sha256.xz }}
45+
SHA512: {{ release.sha512.xz }}
46+
47+
* <{{ release.url.zip }}>
48+
49+
SIZE: {{ release.size.zip }}
50+
SHA1: {{ release.sha1.zip }}
51+
SHA256: {{ release.sha256.zip }}
52+
SHA512: {{ release.sha512.zip }}
53+
54+
## Release Comment
55+
56+
Many committers, developers, and users who provided bug reports helped us make this release.
57+
Thanks for their contributions.

0 commit comments

Comments
 (0)