leptris 1.9.79.0 → 1.9.80.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecc605943fe9c9e154a041e111d380c112085f88f48b219400c3a8ce8338110b
4
- data.tar.gz: 40d65c8714dcfb61ccc264d17b0b3308a80a4493482cd0e56b4b305777b41564
3
+ metadata.gz: c4a64b2b4cad9f41afa0a7f3c898e9b5261ee208bfaa05d5c94d1ca1189cdf10
4
+ data.tar.gz: c72930ea8bd8857f357baee386878411c1539e37c3b59d24486e2ae9f0803775
5
5
  SHA512:
6
- metadata.gz: 10bd77fae0b857744615b7a898340db72b429c38d89139288b9b9a296308b0de93539cb94366860387826a69ea4a9d2c967e2cd495851f1824de39ecc3da51b0
7
- data.tar.gz: fff392d9d72ad3f4e7fba53a361cab7d551e9fd034716acd7291248e80bb0d92cb16ea9285bdaf97a3ca23cb3f3e48396f93064f3dc58c8ef8731b34d7abcc6e
6
+ metadata.gz: d7231682cb2d4e0fd2bbfa6c9c2e9ccc6196372d2e5bba7fadcaba6e8709e533c63f06d328db2f32142846df30871345436eeb83905f7f15df72d357474075c8
7
+ data.tar.gz: f554480e30c3af3d5ca1d301dd77f24bbf9af92f5337d2a2458af7f3e1bac06effbe06fe0b1a06ab8b91d1cb7b39e87dd2d6afbc95eb7666b318bf0ddac2f7b0
data/CHANGELOG.md CHANGED
@@ -5,6 +5,25 @@ All notable changes to Leptris will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.9.80.0] - 2026-09-04
9
+
10
+ ### Changed
11
+
12
+ - **Lockstep with libleptris 1.9.80** (no new C surface — the
13
+ audit holds at 261/261):
14
+ - `fn:format-number` as a plain XPath function (the JDK1.1
15
+ pattern grammar moved to a shared core): specced standalone
16
+ through `#xpath` — grouping+decimals, percent, and zero
17
+ padding (`12,345.68`, `42%`, `00042`).
18
+ - Function registry is last-registration-wins (an internal
19
+ `xpath_function_registry_register_ud` seam): fixes the
20
+ XSLT bridge's decimal-format-aware `format-number` being
21
+ silently shadowed inside transforms.
22
+
23
+ No perf drift: the standing battery re-run on this build holds
24
+ the baseline (serialize 2.9x, inner_html 4.3x, attr reads 6.5x,
25
+ element_children walks at parity with Nokogiri 1.19.4).
26
+
8
27
  ## [1.9.79.0] - 2026-09-04
9
28
 
10
29
  ### Changed
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.9.79"
11
+ LIBLEPTRIS_VERSION = "1.9.80"
12
12
 
13
13
  CMAKE_FLAGS = %w[
14
14
  -DCMAKE_BUILD_TYPE=Release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leptris
4
- VERSION = "1.9.79.0"
4
+ VERSION = "1.9.80.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leptris
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.79.0
4
+ version: 1.9.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.