method-ray 0.1.7-aarch64-linux → 0.1.8-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: a711229ebc26d55fe23b73e4cdf63c22efd1978f321f9c29ceaa623c28662cd9
4
+ data.tar.gz: f3e8e615aa700f3b14b54803512e7800d7bd8e9b097b4120154ddc9f8c36a6f4
5
5
  SHA512:
6
- metadata.gz: 017f988d089fc88e8e5c3dd12d7f4b0a5b83a6784d955626849d5ae50afd8383483ef09b356355a5fb6395a8e78aa6465e4f3239339b46e62d54e4ce6d9091a8
7
- data.tar.gz: 16a0960ac0530bbd5da2cc2c7743fa973b5fbe81b1facdef775c9fcaa445bfce10276c1a726072209a1dbe6207515496ce99b23e9ef0ce2be42b080565681b58
6
+ metadata.gz: 63260184da6c3785b4aca840dda63078f9a6012440e94bd65f01e3a32d806b8f1acfb7aeb0361bc4905d293d96d6690d75e69e11ba3f523457684a1f795c56b8
7
+ data.tar.gz: 7cce1b297db7cf895895218ffd3feb92888a8604c8d8c163cd0b6102958e3a2bdc58b46ebe0f6f343fdd69d7a83ab4772ccefbaeeb488b579d102eeb6ea7b375
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.8] - 2026-03-09
9
+
10
+ ### Added
11
+
12
+ - while/until loop support to type inference ([#46](https://github.com/dak2/method-ray/pull/46))
13
+ - Not operator (!) support to type inference ([#47](https://github.com/dak2/method-ray/pull/47))
14
+ - begin/rescue/ensure exception handling support to type inference ([#48](https://github.com/dak2/method-ray/pull/48))
15
+ - Keyword argument support to type inference ([#49](https://github.com/dak2/method-ray/pull/49))
16
+ - Multiple assignment support to type inference ([#50](https://github.com/dak2/method-ray/pull/50))
17
+
18
+ ### Changed
19
+
20
+ - Resolve all Clippy warnings for cleaner, more idiomatic Rust ([#51](https://github.com/dak2/method-ray/pull/51))
21
+
8
22
  ## [0.1.7] - 2026-03-07
9
23
 
10
24
  ### Added
@@ -109,6 +123,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
109
123
  - Initial release
110
124
  - `methodray check` - Static type checking for Ruby files
111
125
 
126
+ [0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
112
127
  [0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
113
128
  [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
114
129
  [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
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.8'
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.8
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2