method-ray 0.1.7-aarch64-linux → 0.1.9-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: d0521bd22255c635643c4c398d1ebb8926052363e9cdf5db90cfb459884a8be9
4
- data.tar.gz: 14fea0de2d073bfe286b1e89068d0418dfba9099528269c8577fcbd2411e16fe
3
+ metadata.gz: e332c1090b82534758f6d294192b96651bb1a77ce1d96313278dff472c33047d
4
+ data.tar.gz: a89700f7c287eae530743e6303cd02bdfb3f302c6323ca72e20a64668b1a769f
5
5
  SHA512:
6
- metadata.gz: 017f988d089fc88e8e5c3dd12d7f4b0a5b83a6784d955626849d5ae50afd8383483ef09b356355a5fb6395a8e78aa6465e4f3239339b46e62d54e4ce6d9091a8
7
- data.tar.gz: 16a0960ac0530bbd5da2cc2c7743fa973b5fbe81b1facdef775c9fcaa445bfce10276c1a726072209a1dbe6207515496ce99b23e9ef0ce2be42b080565681b58
6
+ metadata.gz: f0492ed7f0c506b121b601fa1634ccf14b318a8a42684a9893092d453de8c11b89db4e142bc23f053158bbc394df5954827ee98326e552f990bb4caad2bdc4c6
7
+ data.tar.gz: 2afa4fc6ca5e56fc1f5594dcd44d9ee26e9f47c50795f2aa1faa28298c01c77c3ed2b7131474693a9fb55a30caa2035bf80c2c6150d871f9aec62203486195d8
data/CHANGELOG.md CHANGED
@@ -5,6 +5,37 @@ 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.9] - 2026-03-15
9
+
10
+ ### Added
11
+
12
+ - Add linter CI workflow for Clippy and RuboCop ([#61](https://github.com/dak2/method-ray/pull/61))
13
+ - Add unit tests for blocks and parameters analyzers ([#60](https://github.com/dak2/method-ray/pull/60))
14
+ - Add super call type inference support ([#59](https://github.com/dak2/method-ray/pull/59))
15
+ - Add for loop type inference support ([#58](https://github.com/dak2/method-ray/pull/58))
16
+ - Add module include support for mixin method resolution ([#57](https://github.com/dak2/method-ray/pull/57))
17
+ - Add complete multi-assignment type inference ([#56](https://github.com/dak2/method-ray/pull/56))
18
+ - Add auto-tagging workflow for release PR merges ([#53](https://github.com/dak2/method-ray/pull/53))
19
+
20
+ ### Changed
21
+
22
+ - Rename rust/ directory to core/ ([#55](https://github.com/dak2/method-ray/pull/55))
23
+ - Infer actual exception types in rescue clauses ([#54](https://github.com/dak2/method-ray/pull/54))
24
+
25
+ ## [0.1.8] - 2026-03-09
26
+
27
+ ### Added
28
+
29
+ - while/until loop support to type inference ([#46](https://github.com/dak2/method-ray/pull/46))
30
+ - Not operator (!) support to type inference ([#47](https://github.com/dak2/method-ray/pull/47))
31
+ - begin/rescue/ensure exception handling support to type inference ([#48](https://github.com/dak2/method-ray/pull/48))
32
+ - Keyword argument support to type inference ([#49](https://github.com/dak2/method-ray/pull/49))
33
+ - Multiple assignment support to type inference ([#50](https://github.com/dak2/method-ray/pull/50))
34
+
35
+ ### Changed
36
+
37
+ - Resolve all Clippy warnings for cleaner, more idiomatic Rust ([#51](https://github.com/dak2/method-ray/pull/51))
38
+
8
39
  ## [0.1.7] - 2026-03-07
9
40
 
10
41
  ### Added
@@ -109,6 +140,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109
140
  - Initial release
110
141
  - `methodray check` - Static type checking for Ruby files
111
142
 
143
+ [0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
144
+ [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
112
145
  [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
113
146
  [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
114
147
  [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
@@ -21,8 +21,8 @@ module MethodRay
21
21
  File.expand_path(@binary_name, LIB_DIR),
22
22
  # Development: target/release (project root)
23
23
  File.expand_path("../../target/release/#{@binary_name}", LIB_DIR),
24
- # Development: rust/target/release (legacy standalone binary)
25
- File.expand_path("../../rust/target/release/#{@legacy_binary_name}", LIB_DIR)
24
+ # Development: core/target/release (legacy standalone binary)
25
+ File.expand_path("../../core/target/release/#{@legacy_binary_name}", LIB_DIR)
26
26
  ]
27
27
  end
28
28
  end
@@ -46,7 +46,7 @@ module MethodRay
46
46
  warn 'Error: CLI binary not found.'
47
47
  warn ''
48
48
  warn 'For development, build with:'
49
- warn ' cd rust && cargo build --release --bin methodray --features cli'
49
+ warn ' cd core && cargo build --release --bin methodray --features cli'
50
50
  warn ''
51
51
  warn 'If installed via gem, this might be a platform compatibility issue.'
52
52
  warn 'Please report at: https://github.com/dak2/method-ray/issues'
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.7'
4
+ VERSION = '0.1.9'
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.7
4
+ version: 0.1.9
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2