leptris 1.9.193.0 → 1.9.193.1

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: d8b1ffa2c04d15482319b91021017e096e8199d6919071ff94c8532af66f0b4d
4
- data.tar.gz: bcbbca3c40e50c5d4c42c167f991267f8a670730dfe321c586292d0e201de0f6
3
+ metadata.gz: 8979aca09e2418ae2f22b32e21af1b9299f3fbe2b396bc73e47fccd999f4a39d
4
+ data.tar.gz: 1d42ce1ddbf65fcb1cc57985899f4bc8366e763b12a1cd32fd54f5ab660769de
5
5
  SHA512:
6
- metadata.gz: 7d0ff9f39131c9f66ed2e9f9cc41a266160f917a6edd90c15629e468e88230de2ad68bcaaecfdd7f60ddb62eec4888ab1d2a2800bcb32c77b27cfd01fef49a31
7
- data.tar.gz: 04ca510ed71d9d59b58d1b49f9d3875fe134d853612fc7e582889e8821902440de01f096b38dad93a7c9279afa510b2e311790e919ee322b7ba77a07ebd74774
6
+ metadata.gz: f258ab8d0f990359137b6819432f6cd75c87b72b9ac4c52debd127d399735f8ccdd46f5a55934c38d73e85f6a0475e5331bc716139eb5ccd7b461138cea97f83
7
+ data.tar.gz: c40707201086cfbdbd2e36d87d0659f9a1503b429a09fde5d5f7fe7a05ace634ebd267eef2b04c95e739f7b92deee4dd9d9f5ba68800002a3901880371afb012
data/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ 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.193.0] - 2026-09-17
9
+
10
+ ### Changed — libleptris 1.9.192 -> 1.9.193 (lockstep)
11
+
12
+ - Engine build hygiene: explicit includes — stdint.h in arena.c,
13
+ unistd.h in cli/output.c (leptris/leptris#1166). Under any
14
+ feature-macro shift (_GNU_SOURCE on the PGO trainer) the old
15
+ transitive-include graph broke the build; both musl platform-gem
16
+ legs now compile clean. The binding additionally forces
17
+ -include stdint.h on the throwaway trainer build (belt and
18
+ suspenders).
19
+ - No public-symbol changes: audit 323/323. The 1.9.193.0 gem is
20
+ the first published release since 1.9.188.0 (the 1.9.188.x PGO
21
+ attempts never passed the musl legs) and carries the full
22
+ 1.9.189-192 RNG wave plus the two-stage PGO library build.
23
+
8
24
  ## [1.9.192.0] - 2026-09-17
9
25
 
10
26
  ### Changed — libleptris 1.9.188 → 1.9.192 (lockstep)
data/Rakefile CHANGED
@@ -117,10 +117,13 @@ task :compile do
117
117
  # _GNU_SOURCE is MUSL-ONLY: the CLI trainer's fileno needs a POSIX
118
118
  # feature macro under musl. On glibc the macro reshuffles the
119
119
  # header graph and breaks arena.c's accidental (missing-stdint.h)
120
- # uintptr_t. Single-quote: the value carries a space (an unquoted
121
- # split hands cmake a bare -D_GNU_SOURCE); non-Windows branch, so
122
- # sh quoting is safe.
123
- gnu = RUBY_PLATFORM =~ /musl/ ? " -D_GNU_SOURCE" : ""
120
+ # uintptr_t. -include stdint.h: under _GNU_SOURCE musl's header
121
+ # graph ALSO stops feeding stdint.h to arena.c (leptris/leptris
122
+ # #1166) force the include on the throwaway trainer build;
123
+ # the shipped library keeps the plain flags. Single-quote: the
124
+ # value carries a space (an unquoted split hands cmake a bare
125
+ # -D_GNU_SOURCE); non-Windows branch, so sh quoting is safe.
126
+ gnu = RUBY_PLATFORM =~ /musl/ ? " -D_GNU_SOURCE -include stdint.h" : ""
124
127
  pgo_cflags = "#{cflags}#{gnu}".strip
125
128
  pgo_base =
126
129
  if pgo_cflags == cflags
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Leptris
4
- VERSION = "1.9.193.0"
4
+ VERSION = "1.9.193.1"
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.193.0
4
+ version: 1.9.193.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.