method-ray 0.1.3-aarch64-linux → 0.1.4-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: 3b41b6ec06b23bd58bcd83c77c5f8e03b72981fe45818eb7ff862b5132c505a3
4
- data.tar.gz: 5f37b7bf3e49581e20f082c47455ec55e8f439165b7209e75b3192e5e52f281d
3
+ metadata.gz: 7cfea60af3118b268a60b401535e761d0867eb7c7e2758a451e09e1be0e4d742
4
+ data.tar.gz: 938dd227fc46662d5290c9783e9aafe10d33f60dcecdd55ea3abfa00e21cad2c
5
5
  SHA512:
6
- metadata.gz: c273b10bbb1aedcc08b8c0c55d1aee17a1d6dc67a04cc32caeef967c11faeeebde756ec818ff05c553eac05c68b015a4a29d078ef8dc16c1cc1a1b167e8b6eb8
7
- data.tar.gz: 16ec34a560f6663757c3ec7af1e85fe584c93e84a64a8a3b290c45fecf48adf7df4e574038a4c10f66f142c2f5cb4a90e2dfb25151bb3270454022521628d3f7
6
+ metadata.gz: a9a129e3b6b755b6e670497499aab08365bce7ae1ffbb51853f538b34c78da4cc9e85eb149f8a74ecc777e1b3e3ff6ac5128293d093f3a7c6eab694b6750192b
7
+ data.tar.gz: 65af9027a438e31e7f368787b5f05a23609d6f50c105dc6c35d6fb3416ebcf16d2741183552a7cbbdce64c9438b61b6eca5f4d7d721af26498f7ee835d1a5b57
data/CHANGELOG.md CHANGED
@@ -5,6 +5,21 @@ 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.4] - 2026-02-16
9
+
10
+ ### Added
11
+
12
+ - Method return type inference for user-defined methods ([#18](https://github.com/dak2/method-ray/pull/18))
13
+ - Parameter type propagation from call-site arguments to method parameters ([#19](https://github.com/dak2/method-ray/pull/19))
14
+ - Receiver-less method call support (ImplicitSelfCall) ([#20](https://github.com/dak2/method-ray/pull/20))
15
+ - `attr_reader`/`attr_writer`/`attr_accessor` support for type inference ([#21](https://github.com/dak2/method-ray/pull/21))
16
+ - `if`/`unless`/`case` conditional type inference ([#22](https://github.com/dak2/method-ray/pull/22))
17
+ - `ConstantReadNode`/`ConstantPathNode` support for type inference ([#23](https://github.com/dak2/method-ray/pull/23))
18
+
19
+ ### Changed
20
+
21
+ - Split install.rs and integration tests into focused modules ([#17](https://github.com/dak2/method-ray/pull/17))
22
+
8
23
  ## [0.1.3] - 2025-02-08
9
24
 
10
25
  ### Added
@@ -54,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
54
69
  - Initial release
55
70
  - `methodray check` - Static type checking for Ruby files
56
71
 
72
+ [0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
57
73
  [0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
58
74
  [0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
59
75
  [0.1.1]: https://github.com/dak2/method-ray/releases/tag/v0.1.1
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.3'
4
+ VERSION = '0.1.4'
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.3
4
+ version: 0.1.4
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2