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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb1270bc40a1a304123f14c95bf9e97501cd916676c539b8f0a3cd88fb9fd762
4
- data.tar.gz: 939ea28f16b13254e1d92c59a68552fafc2caefd4f7fe27ba596a8832f9a027c
3
+ metadata.gz: f0d45e7fcddc60214dfe6dba53d6a2af76c8ede69499c227eea7cd7eab631fcd
4
+ data.tar.gz: ea4b059df1c4a2495ba6749ef8841710781cc74fda9fd70ce88d0cfb45e09e51
5
5
  SHA512:
6
- metadata.gz: 8b1dc6721bd96ffca9d991038da5dc040fff6920f454c150b79d1f5283748a517ea3225d2b77c127b01563f5a37a4defc185e1fb677a3b285259dd9cd526c1e3
7
- data.tar.gz: b83e82e880354959feb66fb866f75dc2470206dfeaeb45f755a438bea81614a9cd227c633cfc8a0d8c99516c01758fb6c603441b2b578b68ee4aed51a41dd74f
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
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MethodRay
4
- VERSION = '0.1.10'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: method-ray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.2.0
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - dak2