method-ray 0.1.6-x86_64-linux → 0.1.7-x86_64-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: e12797d512ea571c2e530d66b1466d45527d45cefc42661999f82c2902c4db40
4
- data.tar.gz: dfe32aa664941ced5da1f91714e1eb3235a210ee18fa24de3d8b858602660155
3
+ metadata.gz: ba2e5ccc4aed6ca057510d8d56641c07b802da9f3122d0f4dae0b4ab275ec126
4
+ data.tar.gz: 2d64d87cfc28c5e1d09c2b6a68d73d3a945b748fd3166ad7d67fa56e38411eac
5
5
  SHA512:
6
- metadata.gz: cdd8a18af91707e384b659bb5bf569b4b217bac842415f953338cf08bfc0ec958ff98563525576336da0ee101bab67ee596250d66e5ca94999ab7095f986ad80
7
- data.tar.gz: b859cd1a835b38a1ad248fa1b994deb595a84c77db71ca8bf538b3269b0d030b7e7f9e4f9f4344946e453039893bfc4bc13d8c3f32af2d11eefb9e383f10eed0
6
+ metadata.gz: b5a1bbd1dc4e524bf3af5afc4ade40440c45452c43108083479ed9076902bfacf0e5e744c5c69c3f051ad6d10323b734b01b29a5cd62f02eed7db2c490a541a8
7
+ data.tar.gz: a325d33b66937a3d1b607b887fe7f3d100a4dcc1d125bbf9f22e849bf7b6f3f9d32ddb5861eb87ee9a27423efc55a484b0d056bb167a4e38141dd7b015607cab
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: x86_64-linux
6
6
  authors:
7
7
  - dak2