yamlscript 0.2.12 → 0.2.14

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: c8f071125892766e3d35f382680e71c1bd5e20820ddfe9913b3478210ed6b23b
4
- data.tar.gz: 8b75785cbf560c3b7507bffd71da279cbf2b432926a64e77bf6eb64184d6bbb2
3
+ metadata.gz: a48388a8052df0e9fd757d040dbe0b83b66dd938254135c371a3769b440d1f9a
4
+ data.tar.gz: a285b64c5de5d53b5526464fd44b66a3b63cd737fd8639a4b54550c69bce1db3
5
5
  SHA512:
6
- metadata.gz: 35cca64d5e6ee68bf190132a984f2cd00dd779b7fac50465375d2dde4afff0755d32f79a07fd32008f9ecf759fe8e4e39768f05dfd93d6433b0631c74128345e
7
- data.tar.gz: 37d7a163e945bfaf97c2679d0d2c1909f646bf94b3b1822660790eda975fa55909389e3905e070f6a31faa7725be2bf6a1619814f499c1043fbce71719a36a0f
6
+ metadata.gz: 8adece48a29a55670c016c2fb93ac6b1cbd8a4d4bf36130a314a260d55e474342f1eb6d2de6ad8aec8be4e312dab8587950f01c3850506f39430866651193463
7
+ data.tar.gz: 183d7006f1d3e093386854e6d3bb80543870333a83a82ea87989173080b877efbd50bd01bb5ac69ab5aca984122fb333359ea8aa1e074b4bb57398a51f67c144
data/ChangeLog.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.2.14] - 2026-06-08
2
+
3
+ - libys 0.2.14
4
+
5
+ ## [0.2.13] - 2026-06-07
6
+
7
+ - libys 0.2.13
8
+
1
9
  ## [0.2.12] - 2026-06-06
2
10
 
3
11
  - libys 0.2.12
data/Rakefile CHANGED
@@ -4,6 +4,7 @@ require "bundler/gem_tasks"
4
4
  require "minitest/test_task"
5
5
 
6
6
  Rake::Task["release:guard_clean"].clear
7
+ Rake::Task["release:source_control_push"].clear
7
8
 
8
9
  # Disable tagging for `rake release`
9
10
  namespace :release do
@@ -19,6 +20,9 @@ namespace :release do
19
20
  task :push do
20
21
  puts "Overriding push task"
21
22
  end
23
+ task :source_control_push do
24
+ puts "Overriding source_control_push task"
25
+ end
22
26
  end
23
27
 
24
28
  Minitest::TestTask.create(:test) do |t|
data/ReadMe.md CHANGED
@@ -172,7 +172,7 @@ See <https://yamlscript.org/doc/install/> for more info.
172
172
 
173
173
  ## License & Copyright
174
174
 
175
- Copyright 2022-2025 Ingy döt Net <ingy@ingy.net>
175
+ Copyright 2022-2026 Ingy döt Net <ingy@ingy.net>
176
176
 
177
177
  This project is licensed under the terms of the `MIT` license.
178
178
  See [LICENSE](https://github.com/yaml/yamlscript/blob/main/License) for more
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class YAMLScript
4
- VERSION = "0.2.12"
4
+ VERSION = "0.2.14"
5
5
  end
data/lib/yamlscript.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2023-2025 Ingy dot Net
3
+ # Copyright 2023-2026 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 libys.
19
- YAMLSCRIPT_VERSION = '0.2.12'
19
+ YAMLSCRIPT_VERSION = '0.2.14'
20
20
 
21
21
  # A low-level interface to the native library
22
22
  module LibYS
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.2.12
4
+ version: 0.2.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ingy döt Net