Skip to content

Commit 219d2d0

Browse files
committed
Bump version to 0.1.9
1 parent 2d7ae52 commit 219d2d0

5 files changed

Lines changed: 23 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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+
825
## [0.1.8] - 2026-03-09
926

1027
### Added
@@ -123,6 +140,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123140
- Initial release
124141
- `methodray check` - Static type checking for Ruby files
125142

143+
[0.1.9]: https://github.com/dak2/method-ray/releases/tag/v0.1.9
126144
[0.1.8]: https://github.com/dak2/method-ray/releases/tag/v0.1.8
127145
[0.1.7]: https://github.com/dak2/method-ray/releases/tag/v0.1.7
128146
[0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
method-ray (0.1.8)
4+
method-ray (0.1.9)
55
rbs (~> 3.0)
66

77
GEM
@@ -66,7 +66,7 @@ CHECKSUMS
6666
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
6767
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
6868
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
69-
method-ray (0.1.8)
69+
method-ray (0.1.9)
7070
minitest (5.27.0) sha256=2d3b17f8a36fe7801c1adcffdbc38233b938eb0b4966e97a6739055a45fa77d5
7171
parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
7272
parser (3.3.10.1) sha256=06f6a725d2cd91e5e7f2b7c32ba143631e1f7c8ae2fb918fc4cebec187e6a688

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "methodray-core"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
edition = "2021"
55

66
[lib]

ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "methodray"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
edition = "2021"
55

66
[lib]

lib/methodray/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module MethodRay
4-
VERSION = '0.1.8'
4+
VERSION = '0.1.9'
55
end

0 commit comments

Comments
 (0)