Skip to content

Commit ecd115f

Browse files
committed
Translate "Ruby 3.5.0 preview1 Released" (ko)
1 parent e4b7865 commit ecd115f

File tree

1 file changed

+36
-31
lines changed

1 file changed

+36
-31
lines changed
Lines changed: 36 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
---
22
layout: news_post
3-
title: "Ruby 3.5.0 preview1 Released"
3+
title: "Ruby 3.5.0-preview1 릴리스"
44
author: "naruse"
5-
translator:
5+
translator: "shia"
66
date: 2025-04-18 00:00:00 +0000
7-
lang: en
7+
lang: ko
88
---
99

1010
{% assign release = site.data.releases | where: "version", "3.5.0-preview1" | first %}
11-
We are pleased to announce the release of Ruby {{ release.version }}. Ruby 3.4 updates its Unicode version to 15.1.0, and so on.
11+
Ruby {{ release.version }} 릴리스를 알리게 되어 기쁩니다. Ruby 3.5는 유니코드 버전을 15.1.0으로 업데이트했으며, 더 많은 것들이 있습니다.
1212

13-
## Language changes
13+
## 언어 변경
1414

15-
* `*nil` no longer calls `nil.to_a`, similar to how `**nil` does
16-
not call `nil.to_hash`. [[Feature #21047]]
15+
* `**nil`과 비슷하게 `*nil`은 더 이상 `nil.to_a`를 호출하지 않습니다.
16+
[[Feature #21047]]
1717

18-
## Core classes updates
18+
## 코어 클래스 변경
1919

20-
Note: We're only listing notable updates of Core class.
20+
주의: 눈에 띄는 클래스 변경만을 포함합니다.
2121

2222
* Binding
2323

24-
* `Binding#local_variables` does no longer include numbered parameters.
25-
Also, `Binding#local_variable_get` and `Binding#local_variable_set` reject to handle numbered parameters.
24+
* `Binding#local_variables`는 더 이상 번호가 매겨진 매개변수를 포함하지 않습니다.
25+
또한, `Binding#local_variable_get``Binding#local_variable_set`은 번호가 매겨진 매개변수를 처리하지 않습니다.
2626
[[Bug #21049]]
2727

2828
* IO
2929

30-
* `IO.select` accepts +Float::INFINITY+ as a timeout argument.
30+
* `IO.select`는 타임아웃 인수로 +Float::INFINITY+를 허용합니다.
3131
[[Feature #20610]]
3232

3333
* String
3434

35-
* Update Unicode to Version 15.1.0 and Emoji Version 15.1. [[Feature #19908]]
36-
(also applies to Regexp)
35+
* Unicode 15.1.0 및 이모지 버전 15.1로 업데이트합니다. [[Feature #19908]]
36+
(Regexp에도 적용됩니다)
3737

3838

39-
## Standard Library updates
39+
## 표준 라이브러리 변경
4040

41-
Note: We're only listing notable updates of Standard librarires.
41+
주의: 눈에 띄는 표준 라이브러리 변경만을 포함합니다.
4242

4343
* ostruct 0.6.1
4444
* pstore 0.2.0
@@ -51,31 +51,31 @@ Note: We're only listing notable updates of Standard librarires.
5151
* readline 0.0.4
5252
* fiddle 1.1.6
5353

54-
## Compatibility issues
54+
## 호환성 문제
5555

56-
Note: Excluding feature bug fixes.
56+
주의: 기능 버그 수정은 포함되어 있지 않습니다.
5757

5858

5959

60-
## Standard library compatibility issues
60+
## 표준 라이브러리 호환성 문제
6161

6262

63-
## C API updates
63+
## C API 변경
6464

6565

6666

67-
## Miscellaneous changes
67+
## 그 이외의 변경
6868

6969

7070

71-
See [NEWS](https://github.com/ruby/ruby/blob/{{ release.tag }}/NEWS.md)
72-
or [commit logs](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }})
73-
for more details.
71+
더 자세한 내용은 [NEWS](https://github.com/ruby/ruby/blob/{{ release.tag }}/NEWS.md)
72+
[커밋 로그](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }})
73+
확인해 주세요.
7474

75-
With those changes, [{{ release.stats.files_changed }} files changed, {{ release.stats.insertions }} insertions(+), {{ release.stats.deletions }} deletions(-)](https://github.com/ruby/ruby/compare/v3_3_0...{{ release.tag }}#file_bucket)
76-
since Ruby 3.4.0!
75+
이러한 변경사항에 따라, Ruby 3.4.0 이후로 [파일 {{ release.stats.files_changed }}개 수정, {{ release.stats.insertions }}줄 추가(+), {{ release.stats.deletions }}줄 삭제(-)](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }}#file_bucket)
76+
이루어졌습니다!
7777

78-
## Download
78+
## 다운로드
7979

8080
* <{{ release.url.gz }}>
8181

@@ -98,8 +98,13 @@ since Ruby 3.4.0!
9898
SHA256: {{ release.sha256.zip }}
9999
SHA512: {{ release.sha512.zip }}
100100

101-
## What is Ruby
101+
## Ruby는
102102

103-
Ruby was first developed by Matz (Yukihiro Matsumoto) in 1993,
104-
and is now developed as Open Source. It runs on multiple platforms
105-
and is used all over the world especially for web development.
103+
Ruby는 1993년에 Matz(마츠모토 유키히로) 씨가 처음 개발했고,
104+
현재는 오픈 소스로서 개발되고 있습니다. 여러 플랫폼에서 동작하며,
105+
특히 웹 개발에서 전 세계적으로 이용되고 있습니다.
106+
107+
[Feature #21047]: https://bugs.ruby-lang.org/issues/21047
108+
[Bug #21049]: https://bugs.ruby-lang.org/issues/21049
109+
[Feature #20610]: https://bugs.ruby-lang.org/issues/20610
110+
[Feature #19908]: https://bugs.ruby-lang.org/issues/19908

0 commit comments

Comments
 (0)