leptris 1.6.2 → 1.7.0
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/Rakefile +1 -1
- data/lib/leptris/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c730c4f07fa9f337b543dc841c39e3c18b36e9cc819cb94073153bfe183ed116
|
|
4
|
+
data.tar.gz: 3536b7dd7fe1cae01ffb0c11e5f56f19bdfbba7acd9f07c3058185fa8bcb9642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac1842632da49256d913a14f9d7c7ea73b2753d5eafc15c33b3898d48e2238e0e24ca24096e454e17f158c1d795280f220612e3b70a2b32ceeccaa6b41c873b9
|
|
7
|
+
data.tar.gz: 031ee5fa00251dbde3f1aad9c6dad15e5ef79c309de0d5bd4875028a1a1d2160b6a9fe4a53e698c24b8333b9214ad824523c9de89e598ede14cf8e6737030378
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to Leptris will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.7.0] - 2026-08-24
|
|
9
|
+
|
|
10
|
+
Lockstep with libleptris 1.7.0. New engine surface:
|
|
11
|
+
leptris_node_children (all-kind batch) and the document/element
|
|
12
|
+
serialize-into caller buffers (#535).
|
|
13
|
+
|
|
8
14
|
## [1.6.2] - 2026-08-24
|
|
9
15
|
|
|
10
16
|
Lockstep with libleptris 1.6.2 (fix releases, no public API changes).
|
data/Rakefile
CHANGED
|
@@ -8,7 +8,7 @@ RSpec::Core::RakeTask.new(:spec)
|
|
|
8
8
|
# Pin for `rake compile` and the platform-gem builds. Keep in lockstep
|
|
9
9
|
# with .github/workflows/build.yml (which calls `rake compile`) and the
|
|
10
10
|
# CHANGELOG when libleptris releases.
|
|
11
|
-
LIBLEPTRIS_VERSION = "1.
|
|
11
|
+
LIBLEPTRIS_VERSION = "1.7.0"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED