Skip to content
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

Update compatibility.md re. TruffleRuby 24.0 #3530

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Memory Footprint:
New features:

* C/C++ extensions are now compiled using the system toolchain and executed natively instead of using GraalVM LLVM (Sulong). This leads to faster startup, no warmup, better compatibility, smaller distribution and faster installation for C/C++ extensions (#3118, @eregon).
* Full support for the Ruby 3.2 and Ruby 3.3 syntax by adopting the [Prism](https://github.com/ruby/prism) parser, which is about twice as fast as the old parser (#3117, #3038, #3039, @andrykonchin, @eregon).
* Full support for the Ruby 3.2 (and Ruby 3.3) _syntax_ by adopting the [Prism](https://github.com/ruby/prism) parser, which is about twice as fast as the old parser (#3117, #3038, #3039, @andrykonchin, @eregon).
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How’s this? Is it acceptable by Truffle’s style guidelines?
(I use _ over * whenever underlining suits better than italicizing for the emphasis.)

* Pattern matching is now fully supported (#3332, #2683, @eregon, @razetime).

Bug fixes:
Expand Down
4 changes: 1 addition & 3 deletions doc/user/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,12 @@ In the C API, the preprocessor macro `TRUFFLERUBY` is defined, which can be chec
## Ruby 3.x Features

Most features of Ruby 3.2 and earlier are supported in TruffleRuby.
However some features are not yet implemented.
However, some features are not yet implemented.
See the following issues for details:

* [Ruby 3.2 features](https://github.com/oracle/truffleruby/issues/3039)
* [Ruby 3.1 features](https://github.com/oracle/truffleruby/issues/2733)
* [Ruby 3.0 features](https://github.com/oracle/truffleruby/issues/2453)
* [Pattern Matching](https://github.com/oracle/truffleruby/issues/3332)
* [Endless methods](https://github.com/oracle/truffleruby/issues/3038)
ParadoxV5 marked this conversation as resolved.
Show resolved Hide resolved

## Features Entirely Missing

Expand Down