method-ray 0.1.10-arm64-darwin → 0.2.0-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/methodray/methodray-cli +0 -0
- data/lib/methodray/methodray.bundle +0 -0
- data/lib/methodray/rbs_cache.bin +0 -0
- data/lib/methodray/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0d45e7fcddc60214dfe6dba53d6a2af76c8ede69499c227eea7cd7eab631fcd
|
|
4
|
+
data.tar.gz: ea4b059df1c4a2495ba6749ef8841710781cc74fda9fd70ce88d0cfb45e09e51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99a1f4a36809a055adeea52806e7f9a9a9e6be92b7767d7c888a72faad85ddf3f9fceee574b225fcb03accf7fd7d735863e306177cfb2bca3049161aae486fed
|
|
7
|
+
data.tar.gz: 0af18a3edf32a99d0f548394d8e3907a68da486b789e5dd3281ebe3b5a3ce876344b7998a2e0fc1473caadefa9b282375e4f8118b9aa401077aa132118e37cc6
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.0] - 2026-04-05
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add pattern matching type inference ([#103](https://github.com/dak2/method-ray/pull/103))
|
|
13
|
+
- Add Lambda/Proc type inference support ([#104](https://github.com/dak2/method-ray/pull/104))
|
|
14
|
+
- Add compound assignment type inference ([#105](https://github.com/dak2/method-ray/pull/105))
|
|
15
|
+
- Add `defined?` type inference support ([#106](https://github.com/dak2/method-ray/pull/106))
|
|
16
|
+
- Add `yield` type inference support ([#107](https://github.com/dak2/method-ray/pull/107))
|
|
17
|
+
- Add control flow keyword support (`break`, `next`, `retry`, `redo`) ([#108](https://github.com/dak2/method-ray/pull/108))
|
|
18
|
+
- Add backtick string type inference ([#109](https://github.com/dak2/method-ray/pull/109))
|
|
19
|
+
- Add predicate type propagation to pattern variables in `case...in` ([#110](https://github.com/dak2/method-ray/pull/110))
|
|
20
|
+
- Add constant type inference support ([#102](https://github.com/dak2/method-ray/pull/102))
|
|
21
|
+
- Add global variable (`$var`) type tracking ([#100](https://github.com/dak2/method-ray/pull/100))
|
|
22
|
+
- Add class variable (`@@var`) type tracking ([#99](https://github.com/dak2/method-ray/pull/99))
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- Fix uninitialized `@@var` reads silently skipping downstream type checking ([#101](https://github.com/dak2/method-ray/pull/101))
|
|
27
|
+
- Fix release workflow not triggered after tag push ([#88](https://github.com/dak2/method-ray/pull/88))
|
|
28
|
+
|
|
8
29
|
## [0.1.10] - 2026-03-24
|
|
9
30
|
|
|
10
31
|
### Added
|
|
@@ -159,6 +180,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
159
180
|
- Initial release
|
|
160
181
|
- `methodray check` - Static type checking for Ruby files
|
|
161
182
|
|
|
183
|
+
[0.2.0]: https://github.com/dak2/method-ray/releases/tag/v0.2.0
|
|
162
184
|
[0.1.10]: https://github.com/dak2/method-ray/releases/tag/v0.1.10
|
|
163
185
|
[0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
|
|
164
186
|
[0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
|
data/lib/methodray/methodray-cli
CHANGED
|
Binary file
|
|
Binary file
|
data/lib/methodray/rbs_cache.bin
CHANGED
|
Binary file
|
data/lib/methodray/version.rb
CHANGED