Skip to content

Commit 671bf9c

Browse files
committed
Release v0.1.3
1 parent a052496 commit 671bf9c

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ 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.3] - 2025-02-08
9+
10+
### Added
11+
12+
- Method parameter type inference support ([#3](https://github.com/dak2/method-ray/pull/3))
13+
- Block parameter type variable resolution ([#4](https://github.com/dak2/method-ray/pull/4))
14+
- Module scope support ([#6](https://github.com/dak2/method-ray/pull/6))
15+
- Fully qualified name support for nested classes/modules ([#7](https://github.com/dak2/method-ray/pull/7))
16+
- Float type support ([#8](https://github.com/dak2/method-ray/pull/8))
17+
- Regexp type support ([#9](https://github.com/dak2/method-ray/pull/9))
18+
- Range type support ([#10](https://github.com/dak2/method-ray/pull/10))
19+
- Generic type inference for Range, Hash, and nested Array ([#11](https://github.com/dak2/method-ray/pull/11))
20+
21+
### Fixed
22+
23+
- Call operator location ([#12](https://github.com/dak2/method-ray/pull/12))
24+
- Memory leak ([#13](https://github.com/dak2/method-ray/pull/13))
25+
26+
### Changed
27+
28+
- Extract BinaryLocator class from Commands module ([#5](https://github.com/dak2/method-ray/pull/5))
29+
- Migrate Rust integration tests to Ruby CLI and Rust unit tests ([#14](https://github.com/dak2/method-ray/pull/14))
30+
- Remove unnecessary test files and logs ([#1](https://github.com/dak2/method-ray/pull/1), [#15](https://github.com/dak2/method-ray/pull/15))
31+
832
## [0.1.2] - 2025-01-19
933

1034
### Added
@@ -30,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3054
- Initial release
3155
- `methodray check` - Static type checking for Ruby files
3256

57+
[0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
3358
[0.1.2]: https://github.com/dak2/method-ray/releases/tag/v0.1.2
3459
[0.1.1]: https://github.com/dak2/method-ray/releases/tag/v0.1.1
3560
[0.1.0]: https://github.com/dak2/method-ray/releases/tag/v0.1.0

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.2'
4+
VERSION = '0.1.3'
55
end

0 commit comments

Comments
 (0)