method-ray 0.1.5-aarch64-linux → 0.1.6-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: edf825bef73625ba0ffdf4eebfe1efe42611b2d97817d80f458e8fdb8bb26575
4
- data.tar.gz: f422b8224699dc9ff951bc72f656a07ec4e285bc96496c8ffa0cd31cf23e2bda
3
+ metadata.gz: 0c0df840585f97eb87ccbb3ac09ef1ac37abbf415c90febe01715def53d543d6
4
+ data.tar.gz: 6de637828045d67079d7e144f8990b82b52294e249b7ce2fa8092fa836e0608e
5
5
  SHA512:
6
- metadata.gz: 3bba6addf7aca556555c996e621cc923f3653dd4e3a35ecf7727f3e4ce82443f87468d2d5eb911114d87ee1fc243f64d9cf987af012ed913935862956800256a
7
- data.tar.gz: df7e586648fc964ad6e813772b4dfa23749fe0af90571b8375fcb7e18d86605025013d9d261c88ef7a8ded278a2563ef23b96a4f36aa5f5f5605252708226923
6
+ metadata.gz: a5967afc974457f1027d255d757e068851ae1d5fc3e73e329df82c254ebf6a47cd4e3823650c7b0861ee07b186da93d992987f840b20659ce1c85ba50807bc6f
7
+ data.tar.gz: 72d6a72ee1a92dec70a99f8077a5f878a699b48389d9f37c1da101ceee2bb21fbdae0adb3bbf798ece0bc97fa6a30564bc233787cabe57d49d6ddaa06370e19a
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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.6] - 2026-02-23
9
+
10
+ ### Fixed
11
+
12
+ - Embed `method_loader.rb` at compile time with `include_str!` to eliminate runtime dependency on source directory ([#35](https://github.com/dak2/method-ray/pull/35))
13
+
8
14
  ## [0.1.5] - 2026-02-23
9
15
 
10
16
  ### Added
@@ -89,6 +95,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
89
95
  - Initial release
90
96
  - `methodray check` - Static type checking for Ruby files
91
97
 
98
+ [0.1.6]: https://github.com/dak2/method-ray/releases/tag/v0.1.6
92
99
  [0.1.5]: https://github.com/dak2/method-ray/releases/tag/v0.1.5
93
100
  [0.1.4]: https://github.com/dak2/method-ray/releases/tag/v0.1.4
94
101
  [0.1.3]: https://github.com/dak2/method-ray/releases/tag/v0.1.3
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.5'
4
+ VERSION = '0.1.6'
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.5
4
+ version: 0.1.6
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - dak2