leptris 1.3.0 → 1.4.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 +7 -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: b2d88ed5cdbe9a27cb5ab05f1b1fd6c96b290e22291eea46f8b5d331b65acb4c
|
|
4
|
+
data.tar.gz: 2ef52039eca7c8c3dd85f0d933982a550dc3a3f4e63c151c0fd91c96a957c725
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fda307a95ea72f82d137681698bb67d2d03482a285f52a31fd7d4e30293fdd5680c2fbd435ef503251f8ccb479f7f0affa19d5e60bb2686c0bf9c747572b50ea
|
|
7
|
+
data.tar.gz: e1794499e7134b8fad62cb782f6cab99e13fe4197c48bbb4ab67d395ec607aea878312d033e3a006cc29c2f3b9c12cc0b6dd5a6fedc572352ddd2b7a8d8a06ba
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.4.0] - 2026-08-23
|
|
9
|
+
|
|
10
|
+
Lockstep with libleptris 1.4.0 — engine pins the TODO.bindings
|
|
11
|
+
release: pull (StAX) API, bounded iterparse, compiled XPath
|
|
12
|
+
expressions, per-parse options, truthful serialization encoding
|
|
13
|
+
declarations. Binding-side adoption of the new APIs follows.
|
|
14
|
+
|
|
8
15
|
## [1.3.0] - 2026-08-23
|
|
9
16
|
|
|
10
17
|
Lockstep with libleptris 1.3.0 — takes full advantage of the
|
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.4.0"
|
|
12
12
|
|
|
13
13
|
CMAKE_FLAGS = %w[
|
|
14
14
|
-DCMAKE_BUILD_TYPE=Release
|
data/lib/leptris/version.rb
CHANGED