method-ray 0.1.6-aarch64-linux → 0.1.8-aarch64-linux

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: 0c0df840585f97eb87ccbb3ac09ef1ac37abbf415c90febe01715def53d543d6
4
- data.tar.gz: 6de637828045d67079d7e144f8990b82b52294e249b7ce2fa8092fa836e0608e
3
+ metadata.gz: a711229ebc26d55fe23b73e4cdf63c22efd1978f321f9c29ceaa623c28662cd9
4
+ data.tar.gz: f3e8e615aa700f3b14b54803512e7800d7bd8e9b097b4120154ddc9f8c36a6f4
5
5
  SHA512:
6
- metadata.gz: a5967afc974457f1027d255d757e068851ae1d5fc3e73e329df82c254ebf6a47cd4e3823650c7b0861ee07b186da93d992987f840b20659ce1c85ba50807bc6f
7
- data.tar.gz: 72d6a72ee1a92dec70a99f8077a5f878a699b48389d9f37c1da101ceee2bb21fbdae0adb3bbf798ece0bc97fa6a30564bc233787cabe57d49d6ddaa06370e19a
6
+ metadata.gz: 63260184da6c3785b4aca840dda63078f9a6012440e94bd65f01e3a32d806b8f1acfb7aeb0361bc4905d293d96d6690d75e69e11ba3f523457684a1f795c56b8
7
+ data.tar.gz: 7cce1b297db7cf895895218ffd3feb92888a8604c8d8c163cd0b6102958e3a2bdc58b46ebe0f6f343fdd69d7a83ab4772ccefbaeeb488b579d102eeb6ea7b375
data/CHANGELOG.md CHANGED
@@ -5,6 +5,34 @@ 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.1.8] - 2026-03-09
9
+
10
+ ### Added
11
+
12
+ - while/until loop support to type inference ([#46](https://github.com/dak2/method-ray/pull/46))
13
+ - Not operator (!) support to type inference ([#47](https://github.com/dak2/method-ray/pull/47))
14
+ - begin/rescue/ensure exception handling support to type inference ([#48](https://github.com/dak2/method-ray/pull/48))
15
+ - Keyword argument support to type inference ([#49](https://github.com/dak2/method-ray/pull/49))
16
+ - Multiple assignment support to type inference ([#50](https://github.com/dak2/method-ray/pull/50))
17
+
18
+ ### Changed
19
+
20
+ - Resolve all Clippy warnings for cleaner, more idiomatic Rust ([#51](https://github.com/dak2/method-ray/pull/51))
21
+
22
+ ## [0.1.7] - 2026-03-07
23
+
24
+ ### Added
25
+
26
+ - Kernel/Object methods loaded from RBS to reduce false positives ([#39](https://github.com/dak2/method-ray/pull/39))
27
+ - Object/Kernel fallback chain for method resolution ([#40](https://github.com/dak2/method-ray/pull/40))
28
+ - Constant namespace resolution for ConstantReadNode in nested scopes ([#41](https://github.com/dak2/method-ray/pull/41))
29
+ - Cargo test added to CI workflow ([#38](https://github.com/dak2/method-ray/pull/38))
30
+
31
+ ### Changed
32
+
33
+ - Extract `bytes_to_name` helper to consolidate 17 UTF-8 conversion sites ([#42](https://github.com/dak2/method-ray/pull/42))
34
+ - Refactor MethodCallBox by extracting helper methods ([#43](https://github.com/dak2/method-ray/pull/43))
35
+
8
36
  ## [0.1.6] - 2026-02-23
9
37
 
10
38
  ### Fixed
@@ -95,6 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
95
123
  - Initial release
96
124
  - `methodray check` - Static type checking for Ruby files
97
125
 
126
+ [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
127
+ [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
98
128
  [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
99
129
  [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
100
130
  [0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
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.6'
4
+ VERSION = '0.1.8'
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.6
4
+ version: 0.1.8
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2