method-ray 0.1.8-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: a711229ebc26d55fe23b73e4cdf63c22efd1978f321f9c29ceaa623c28662cd9
4
- data.tar.gz: f3e8e615aa700f3b14b54803512e7800d7bd8e9b097b4120154ddc9f8c36a6f4
3
+ metadata.gz: e332c1090b82534758f6d294192b96651bb1a77ce1d96313278dff472c33047d
4
+ data.tar.gz: a89700f7c287eae530743e6303cd02bdfb3f302c6323ca72e20a64668b1a769f
5
5
  SHA512:
6
- metadata.gz: 63260184da6c3785b4aca840dda63078f9a6012440e94bd65f01e3a32d806b8f1acfb7aeb0361bc4905d293d96d6690d75e69e11ba3f523457684a1f795c56b8
7
- data.tar.gz: 7cce1b297db7cf895895218ffd3feb92888a8604c8d8c163cd0b6102958e3a2bdc58b46ebe0f6f343fdd69d7a83ab4772ccefbaeeb488b579d102eeb6ea7b375
6
+ metadata.gz: f0492ed7f0c506b121b601fa1634ccf14b318a8a42684a9893092d453de8c11b89db4e142bc23f053158bbc394df5954827ee98326e552f990bb4caad2bdc4c6
7
+ data.tar.gz: 2afa4fc6ca5e56fc1f5594dcd44d9ee26e9f47c50795f2aa1faa28298c01c77c3ed2b7131474693a9fb55a30caa2035bf80c2c6150d871f9aec62203486195d8
data/CHANGELOG.md CHANGED
@@ -5,6 +5,23 @@ 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
+
8
25
  ## [0.1.8] - 2026-03-09
9
26
 
10
27
  ### Added
@@ -123,6 +140,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123
140
  - Initial release
124
141
  - `methodray check` - Static type checking for Ruby files
125
142
 
143
+ [0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
126
144
  [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
127
145
  [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
128
146
  [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
@@ -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.8'
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.8
4
+ version: 0.1.9
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2