method-ray 0.1.5-arm64-darwin → 0.1.6-arm64-darwin

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: fefb06a64f62936e0728fca5b09d53c43f9e61f03801844d335fdd013ac79f3b
4
- data.tar.gz: 24c9dbe49378233757b9d6deb4c242b67902fb5304e263f6cfce06f0b6b635f7
3
+ metadata.gz: b16b617fda71f490c0f5180bc008d7d66d4bd4d741731eb61c60faea3753893f
4
+ data.tar.gz: 0f0f765234df4c69e7da1bcae4d293e3f9d8075939ddc6e42b92c673af721b1f
5
5
  SHA512:
6
- metadata.gz: 27a5fe54d8a86f1a40d1c2f61cae2f7b633e291bf5625ad11a1bd24cad06b473ef13b2887a6e8637b2376bbd081cc1cc6e2f6ce1b66fefd609127cf3d55114bc
7
- data.tar.gz: '08e2237303b5b628f2faf71b1417d9b98346b51741e96247bd5b3ec24c25319eca3a2a4cfd5d0497079190c87101c12875c7673aa342eeb596377f1d1b4847c7'
6
+ metadata.gz: 8e13beffe1292678c7d556a12fb778dc5ae8dbd0a5f1c4eb8cab05341c08ab63b666531aba441d2fde4c140b6a11804d70030acf55bf18dcae77242775c68be1
7
+ data.tar.gz: 43cbe8e7890cdcace5ac5166877b044115a9193d848ca2c0e7909edb800de50f4ac5ee2166aaca4146e73bf26e8c0ef9a1e37df6f5f8aa78ce019aad7ef56d8e
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: arm64-darwin
6
6
  authors:
7
7
  - dak2