method-ray 0.1.6-aarch64-linux → 0.1.7-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: d0521bd22255c635643c4c398d1ebb8926052363e9cdf5db90cfb459884a8be9
4
+ data.tar.gz: 14fea0de2d073bfe286b1e89068d0418dfba9099528269c8577fcbd2411e16fe
5
5
  SHA512:
6
- metadata.gz: a5967afc974457f1027d255d757e068851ae1d5fc3e73e329df82c254ebf6a47cd4e3823650c7b0861ee07b186da93d992987f840b20659ce1c85ba50807bc6f
7
- data.tar.gz: 72d6a72ee1a92dec70a99f8077a5f878a699b48389d9f37c1da101ceee2bb21fbdae0adb3bbf798ece0bc97fa6a30564bc233787cabe57d49d6ddaa06370e19a
6
+ metadata.gz: 017f988d089fc88e8e5c3dd12d7f4b0a5b83a6784d955626849d5ae50afd8383483ef09b356355a5fb6395a8e78aa6465e4f3239339b46e62d54e4ce6d9091a8
7
+ data.tar.gz: 16a0960ac0530bbd5da2cc2c7743fa973b5fbe81b1facdef775c9fcaa445bfce10276c1a726072209a1dbe6207515496ce99b23e9ef0ce2be42b080565681b58
data/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ 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.7] - 2026-03-07
9
+
10
+ ### Added
11
+
12
+ - Kernel/Object methods loaded from RBS to reduce false positives ([#39](https://github.com/dak2/method-ray/pull/39))
13
+ - Object/Kernel fallback chain for method resolution ([#40](https://github.com/dak2/method-ray/pull/40))
14
+ - Constant namespace resolution for ConstantReadNode in nested scopes ([#41](https://github.com/dak2/method-ray/pull/41))
15
+ - Cargo test added to CI workflow ([#38](https://github.com/dak2/method-ray/pull/38))
16
+
17
+ ### Changed
18
+
19
+ - Extract `bytes_to_name` helper to consolidate 17 UTF-8 conversion sites ([#42](https://github.com/dak2/method-ray/pull/42))
20
+ - Refactor MethodCallBox by extracting helper methods ([#43](https://github.com/dak2/method-ray/pull/43))
21
+
8
22
  ## [0.1.6] - 2026-02-23
9
23
 
10
24
  ### Fixed
@@ -95,6 +109,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
95
109
  - Initial release
96
110
  - `methodray check` - Static type checking for Ruby files
97
111
 
112
+ [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
98
113
  [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
99
114
  [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
100
115
  [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.7'
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.7
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2