Skip to content

Create release for 3.4.5 #3590

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _data/downloads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ preview:

stable:

- 3.4.4
- 3.4.5
- 3.3.8
- 3.2.8

Expand Down
24 changes: 24 additions & 0 deletions _data/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,30 @@

# 3.4 series

- version: 3.4.5
date: 2025-07-15
post: /en/news/2025/07/15/ruby-3-4-5-released/
url:
gz: https://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.gz
zip: https://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.zip
xz: https://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.xz
size:
gz: 23237143
zip: 28405937
xz: 17265032
sha1:
gz: ae40a537434bf432aa3b828bc4d13a295854cf40
zip: 33cb17388dfa915638eeea3ddd156b5c79f79428
xz: d4e7363acb04604bd67276ed3c2ad016c2de87b2
sha256:
gz: 1d88d8a27b442fdde4aa06dc99e86b0bbf0b288963d8433112dd5fac798fd5ee
zip: e1672ad3da2a8ea7820f4ede55d1d6f451c7f011c160991d4c9bdd4a38d18658
xz: 7b3a905b84b8777aa29f557bada695c3ce108390657e614d2cc9e2fb7e459536
sha512:
gz: 985928770dc8cd551de8df75c95e33b454586e88b532d98fef2d1bcaf74750ebc0265cf0517a5a7df8dbf273e33fb8f6f22c3915327f8a26227cc0abcfd4964f
zip: 557e220bca925d05af83d6779dbdf698f32f6e8b57c5138e9da80b02085faa134568a894949d2242ea1fe22b020035aa2b279c04791ac37c17f89dbf597a66c4
xz: 1f5d2fd527d15bd81ca8f49767d6426533367c1018a1d275d34721a96410b51204236173224e5198a42b56162c6e7a7b0c060fc032a9fd7f250b44e05c7af560

- version: 3.4.4
date: 2025-05-14
post: /en/news/2025/05/14/ruby-3-4-4-released/
Expand Down
50 changes: 50 additions & 0 deletions en/news/_posts/2025-07-15-ruby-3-4-5-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
layout: news_post
title: "Ruby 3.4.5 Released"
author: k0kubun
translator:
date: 2025-07-15 17:00:00 +0000
lang: en
---

Ruby 3.4.5 has been released.

This is a routine update that includes bug fixes and GCC 15 support. Please refer to the
[release notes on GitHub](https://github.com/ruby/ruby/releases/tag/v3_4_5) for further details.

## Release Schedule

We intend to release the latest stable Ruby version (currently Ruby 3.4) every two months following the most recent release.
Ruby 3.4.6 is scheduled for September, 3.4.7 for November, and 3.4.8 for January.

If a change arises that significantly affects users, a release may occur earlier than planned, and the subsequent schedule may shift accordingly.

## Download

{% assign release = site.data.releases | where: "version", "3.4.5" | 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.
Loading