yamlscript 0.1.70 → 0.1.71

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: 952da328d29954e55382a684920769b087e466a1801b7b36c0841f322c13ed5a
4
- data.tar.gz: 7cfbb2bfac0421ea2ef49d20d4d970b68d7cdc9e99e1d5187e1b37763694ef07
3
+ metadata.gz: 4e8efd1210ff5d33091faf938a234a9568e16a9a90fb1b6ae20197348dcf68bb
4
+ data.tar.gz: cf38d69a555ca7917b275880640bdbeee350f85b453972fbe4f578bedb1496f3
5
5
  SHA512:
6
- metadata.gz: d693ee738f2c2f4e715b9e6fc2239fd1a1062aa33a93fe3de4ed6ced81ff00b24585b58ea91a4b5a7a3bc6906f196a1ebe73a3a10e6b0b53eaa1e283ccb6ac09
7
- data.tar.gz: 364b64edd676ad5ea4ebeb73b508eb8910e7fbbc76a72eae94ffa93602b7beef118739740faf07b9d514ca2a0b5365db1b2912fd9e39044504eb1d77b8aab4e4
6
+ metadata.gz: 13008b356cc84c3a2e171ab9438a7d787e2df1def6d712cfa73677daf9de58c4edcd0e8ffb62ee544de5d3019c920da47074e846298dc13ab81d0f3990b55f88
7
+ data.tar.gz: 767b2364c796aab5735843526e580429c163917bf9db8fc9941a26acf933cb84f11f6d820134ae256014d4ba771dfec2e16ceabe03bd34198dc145eb7f27f01b
data/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.71] - 2024-08-12
2
+
3
+ - libyamlscript 0.1.71
4
+
1
5
  ## [0.1.70] - 2024-08-10
2
6
 
3
7
  - libyamlscript 0.1.70
data/ReadMe.md CHANGED
@@ -12,10 +12,11 @@ Load `file.yaml` with YAMLScript:
12
12
  ```yaml
13
13
  !yamlscript/v0/
14
14
 
15
+ # Get data from external sources:
15
16
  =>:
16
17
  names-url =:
17
- ("https://raw.githubusercontent.com/dominictarr/" +
18
- "random-name/master/first-names.json")
18
+ "https://raw.githubusercontent.com/dominictarr/" +
19
+ "random-name/master/first-names.json"
19
20
 
20
21
  name-list =: &first-names json/load(curl(names-url))
21
22
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.1.70"
4
+ VERSION = "0.1.71"
5
5
  end
data/lib/yamlscript.rb CHANGED
@@ -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.70'
19
+ YAMLSCRIPT_VERSION = '0.1.71'
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.70
4
+ version: 0.1.71
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-08-10 00:00:00.000000000 Z
12
+ date: 2024-08-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest