yamlscript 0.1.86 → 0.1.89

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: 1edf1776b5c59c115417b94142e3f33ed81b59103f7ad1fca50d20287e7552a8
4
- data.tar.gz: 786c1e04916ad31839b6df956c8a5774a85c40526a38fa20435dec69f1adfc99
3
+ metadata.gz: 31592876bd4b34b5e8329de7b371614b64b190e3a3a7238262985184b29da074
4
+ data.tar.gz: dffda717a6476f6c68717aed4a25a063ab49315a540fd21432705e4c0959645a
5
5
  SHA512:
6
- metadata.gz: 9623d0b3e9c1ed9109f5a642fa0ebab4701f2cef85be94f1c6f6cba58f3e8b34bbbe9c8d2fe8860fd95165492b9302f01186591141d5363bc7864dfac2560837
7
- data.tar.gz: 399a87259e36f6e6f9d53a9ca610b7a301ac9db6e504377af7c010dfc8d65e24d61c078ffbdfcbaa1534cadbb3cc184e824339f32088093be013a3a54a45f0c8
6
+ metadata.gz: 492e7f01c5db2cf43fc268015dacf8c1b22447f60beef7a0b6fe4e9739e3e48a384fcf6a6e1470bd1fcde06e075af3dbebde6df2bc0119493568e06f61405e4c
7
+ data.tar.gz: 8344c69a7df39e3b7225f5549cedfcf68bc0690e9d20cfd7f3109e64310af43b1aa24b69b6b1b3d7b927745c73476cd817c17fbf5a1257f57b1ab7c5d8d203be
data/ChangeLog.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [0.1.89] - 2025-01-29
2
+
3
+ - libyamlscript 0.1.89
4
+
5
+ ## [0.1.88] - 2025-01-15
6
+
7
+ - libyamlscript 0.1.88
8
+
9
+ ## [0.1.87] - 2024-12-16
10
+
11
+ - libyamlscript 0.1.87
12
+
1
13
  ## [0.1.86] - 2024-12-01
2
14
 
3
15
  - libyamlscript 0.1.86
data/ReadMe.md CHANGED
@@ -10,7 +10,7 @@ Add Logic to Your YAML Files
10
10
 
11
11
  Load `file.yaml` with YAMLScript:
12
12
  ```yaml
13
- !yamlscript/v0/
13
+ !yamlscript/v0:
14
14
 
15
15
  # Get data from external sources:
16
16
  names-url =:
@@ -168,7 +168,7 @@ See https://github.com/yaml/yamlscript?#installing-yamlscript for more info.
168
168
 
169
169
  ## License & Copyright
170
170
 
171
- Copyright 2022-2024 Ingy döt Net <ingy@ingy.net>
171
+ Copyright 2022-2025 Ingy döt Net <ingy@ingy.net>
172
172
 
173
173
  This project is licensed under the terms of the `MIT` license.
174
174
  See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.1.86"
4
+ VERSION = "0.1.89"
5
5
  end
data/lib/yamlscript.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2023-2024 Ingy dot Net
3
+ # Copyright 2023-2025 Ingy dot Net
4
4
  # This code is licensed under MIT license (See License for details)
5
5
 
6
6
  require 'fiddle'
@@ -16,7 +16,7 @@ class YAMLScript
16
16
  # This value is automatically updated by 'make bump'.
17
17
  # The version number is used to find the correct shared library file.
18
18
  # We currently only support binding to an exact version of libyamlscript.
19
- YAMLSCRIPT_VERSION = '0.1.86'
19
+ YAMLSCRIPT_VERSION = '0.1.89'
20
20
 
21
21
  # A low-level interface to the native library
22
22
  module LibYAMLScript
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamlscript
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.86
4
+ version: 0.1.89
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ingy döt Net
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-12-02 00:00:00.000000000 Z
12
+ date: 2025-01-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest