prism 0.23.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21ba5f26f72f4d44a749e9afa3988a7844ae7b13bf9258bd6e9b907aa8a4941c
4
- data.tar.gz: 469d952df74bbd51262e5c7945ddee1d9766eafe2091527c4a952e6de2eaba0c
3
+ metadata.gz: 827194fd8b477f9f021677ca386e35fd8300daa86a09fc11fe66a85ee54da97d
4
+ data.tar.gz: 2a44a3cf5e31260a949965aaf2aa5fba0cd8b1ac910ae694d22fd8e42f4d6b9b
5
5
  SHA512:
6
- metadata.gz: f0a7686666636ac8a379a40415e6e8ce85d292afc8cc6e223d7157bc502ce24cfc635215f1e89623fac857056e399eaa5e8153337f31c2ecf3a770aa8c1db4e2
7
- data.tar.gz: d5db770e2d47bbf85f044c461256f6c87eaf234e4c5bb8f11a848ca5a15e55654551879fa8db5a6e655ec506755a1f7cfdda1cfaafa2db0d9977886661e0b1a9
6
+ metadata.gz: 41dab6cd85f9f57bf2e2256e7b7fd7ac44c46883ad6d79c0056bff3b34500b2ecb28a1febeb1deed5a49b862c4f4382856ad2195639f86e770c006d1b6a41f8e
7
+ data.tar.gz: 0474d64c9bbd3385f65b00bf83e6b2d3c9543785c85b42d50bce59327e6af7a8fc13d54e5b485b6c930997dabe0fd81c43835243fc96fb28beb3523395ddde71
data/CHANGELOG.md CHANGED
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.24.0] - 2024-02-15
10
+
11
+ ### Added
12
+
13
+ - More support for `Prism::Translation::Ripper` is added.
14
+ - Support multiple versions for `Prism::Translation::Parser`.
15
+ - Improved memory usage in the FFI backend.
16
+ - Very large speed and memory improvements for creating the Ruby AST.
17
+
18
+ ### Changed
19
+
20
+ - Fix location for empty symbol in hash key.
21
+ - Fix parsing a rescue modifier on the value of an assignment when the LHS is a method call with arguments and no parentheses.
22
+
9
23
  ## [0.23.0] - 2024-02-14
10
24
 
11
25
  ### Added
@@ -378,7 +392,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
378
392
 
379
393
  - 🎉 Initial release! 🎉
380
394
 
381
- [unreleased]: https://github.com/ruby/prism/compare/v0.23.0...HEAD
395
+ [unreleased]: https://github.com/ruby/prism/compare/v0.24.0...HEAD
396
+ [0.24.0]: https://github.com/ruby/prism/compare/v0.23.0...v0.24.0
382
397
  [0.23.0]: https://github.com/ruby/prism/compare/v0.22.0...v0.23.0
383
398
  [0.22.0]: https://github.com/ruby/prism/compare/v0.21.0...v0.22.0
384
399
  [0.21.0]: https://github.com/ruby/prism/compare/v0.20.0...v0.21.0
data/docs/releasing.md CHANGED
@@ -34,7 +34,7 @@ ruby -pi -e 'gsub(/MINOR_VERSION = \d+/, %Q{MINOR_VERSION = #{ENV["PRISM_MINOR"]
34
34
  ruby -pi -e 'gsub(/PATCH_VERSION = \d+/, %Q{PATCH_VERSION = #{ENV["PRISM_PATCH"]}})' templates/lib/prism/serialize.rb.erb
35
35
  ruby -pi -e 'gsub(/^version = ".+?"/, %Q{version = "#{ENV["PRISM_VERSION"]}"})' rust/ruby-prism-sys/Cargo.toml
36
36
  ruby -pi -e 'gsub(/^version = ".+?"/, %Q{version = "#{ENV["PRISM_VERSION"]}"})' rust/ruby-prism/Cargo.toml
37
- ruby -pi -e 'gsub(/^ruby-prism-sys = { version = ".+?"/, %Q{ruby-prism-sys = { version = "#{ENV["PRISM_VERSION"]}"})' rust/ruby-prism/Cargo.toml
37
+ ruby -pi -e 'gsub(/^ruby-prism-sys = \{ version = ".+?"/, %Q{ruby-prism-sys = \{ version = "#{ENV["PRISM_VERSION"]}"})' rust/ruby-prism/Cargo.toml
38
38
  ```
39
39
 
40
40
  * Update the `Gemfile.lock` file: