Skip to content

Commit d95a129

Browse files
authored
Merge pull request #2772 from ruby/version-3.10.0
Version 3.10.0
2 parents 30f923b + 75c39cc commit d95a129

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# CHANGELOG
22

3+
## 3.10.0 (2025-12-23)
4+
5+
RBS 3.10.0 ships with a pure C parser implementation, signature updates for Ruby 4.0, and various bug fixes.
6+
7+
### Pure C parser implementation
8+
9+
The new parser implementation was announced at [RubyKaigi 2025](https://rubykaigi.org/2025/presentations/amomchilov.html) and is finally shipped as a RubyGem!
10+
11+
The new parser is faster than the one in 3.9 and is portable — it is independent of the Ruby runtime and is used to implement Sorbet’s RBS support.
12+
13+
### Type definition of bundled gems
14+
15+
The type definitions of `cgi` have been moved to [gem_rbs_collection](https://github.com/ruby/gem_rbs_collection/tree/main/gems/cgi), as it has been migrated to a bundled gem in Ruby 4.0
16+
17+
`cgi-escape` has been added to `stdlib`. You may need to declare a dependency on `cgi-escape` in your `manifest.yaml`, add `-r cgi-escape` to your command line, or update your type checker configuration.
18+
19+
```yaml
20+
dependencies:
21+
- name: cgi-escape
22+
```
23+
24+
The type definitions for `pathname` have also been moved from `stdlib` to `core`, as it is now implemented as part of the core library.
25+
26+
### Pull Requests
27+
28+
* [Backport] Support rdoc v7 ([#2770](https://github.com/ruby/rbs/pull/2770))
29+
* [Backport] Check tuple type length ([#2766](https://github.com/ruby/rbs/pull/2766))
30+
* Backport update to 4.0.0-preview3 ([#2768](https://github.com/ruby/rbs/pull/2768))
31+
* [Backport] Remove test code for bundled gems ([#2762](https://github.com/ruby/rbs/pull/2762))
32+
* Merge pull request #2761 from ruby/update-minitest ([#2763](https://github.com/ruby/rbs/pull/2763))
33+
* [Backport] Support BigDecimal v4 ([#2759](https://github.com/ruby/rbs/pull/2759))
34+
* Parser/lexer backports ([#2756](https://github.com/ruby/rbs/pull/2756))
35+
* Merge pull request #2753 from ruby/delete-printf ([#2754](https://github.com/ruby/rbs/pull/2754))
36+
* Backports ([#2751](https://github.com/ruby/rbs/pull/2751))
37+
* Merge pull request #2728 from ruby/cgi ([#2747](https://github.com/ruby/rbs/pull/2747))
38+
* Merge pull request #2729 from ruby/rbs-assert ([#2748](https://github.com/ruby/rbs/pull/2748))
39+
* Merge pull request #2749 from ruby/fix-test ([#2750](https://github.com/ruby/rbs/pull/2750))
40+
* Backport RBS file updates ([#2742](https://github.com/ruby/rbs/pull/2742))
41+
* Backport JSON PRs ([#2740](https://github.com/ruby/rbs/pull/2740))
42+
* Merge pull request #2718 from ruby/ruby-4 ([#2741](https://github.com/ruby/rbs/pull/2741))
43+
* [Backport] Move Pathname to core from stdlib ([#2730](https://github.com/ruby/rbs/pull/2730))
44+
* Backport rdoc 6.16 ([#2722](https://github.com/ruby/rbs/pull/2722))
45+
* Backport rdoc support ([#2719](https://github.com/ruby/rbs/pull/2719))
46+
* Backport "Remove sig for IO#{ready?,nread}" ([#2720](https://github.com/ruby/rbs/pull/2720))
47+
* Backport more pure C parsers ([#2679](https://github.com/ruby/rbs/pull/2679))
48+
* Backport module name normalization ([#2673](https://github.com/ruby/rbs/pull/2673))
49+
* Backport pure-C parser ([#2671](https://github.com/ruby/rbs/pull/2671))
50+
* Fix test failure ([#2672](https://github.com/ruby/rbs/pull/2672))
51+
352
## 3.9.5 (2025-09-08)
453

554
### Signature updates

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rbs (3.10.0.pre.2)
4+
rbs (3.10.0)
55
logger
66

77
PATH

lib/rbs/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RBS
4-
VERSION = "3.10.0.pre.2"
4+
VERSION = "3.10.0"
55
end

0 commit comments

Comments
 (0)