From 5c636d1f3281fee88034d51a6f05d5ac7071018a Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 6 May 2026 08:18:50 +0000 Subject: [PATCH 1/3] chore: localize keywords in `@stdlib/constants/float32/gamma-lanczos-g` Replace `float64`, `64bit`, and `64-bit` keywords with `float32`, `32bit`, and `32-bit`. Keyword array was previously identical to the float64 sibling (no localization performed when the package was introduced); package itself returns the float32-quantized value. --- .../@stdlib/constants/float32/gamma-lanczos-g/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/package.json b/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/package.json index fffb8d71af38..09bba136bb32 100644 --- a/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/package.json +++ b/lib/node_modules/@stdlib/constants/float32/gamma-lanczos-g/package.json @@ -58,9 +58,9 @@ "float", "real", "floating-point", - "float64", - "64bit", - "64-bit", + "float32", + "32bit", + "32-bit", "ieee754", "gamma", "lanczos", From 022839e9f24ac6b47d0e0f923f30220b36d1a73c Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 6 May 2026 08:18:54 +0000 Subject: [PATCH 2/3] chore: replace `dbl` keyword with `flt` in `@stdlib/constants/float32/fourth-root-eps` The float32 package retained the `dbl` (double abbreviation) keyword from its float64 sibling; replace with the corresponding float32 abbreviation `flt`. --- .../@stdlib/constants/float32/fourth-root-eps/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/package.json b/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/package.json index 8acb4c92caeb..526f46db221f 100644 --- a/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/package.json +++ b/lib/node_modules/@stdlib/constants/float32/fourth-root-eps/package.json @@ -55,7 +55,7 @@ "const", "mathematics", "math", - "dbl", + "flt", "floating-point", "float", "float32", From 9f52d628b4dceb024f92dcabf3454cd529bc0ff6 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 6 May 2026 08:19:00 +0000 Subject: [PATCH 3/3] chore: replace `64bit` keyword with `32bit` in `@stdlib/constants/float32/num-significand-bits` Package returns the number of significand bits in single-precision (23) and is in the float32 namespace, but its keyword array contained `64bit` alongside `float32`. Replace with `32bit` so the keywords match the package's actual precision. --- .../@stdlib/constants/float32/num-significand-bits/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/constants/float32/num-significand-bits/package.json b/lib/node_modules/@stdlib/constants/float32/num-significand-bits/package.json index 3e8e7d382e16..d7fd605b7af5 100644 --- a/lib/node_modules/@stdlib/constants/float32/num-significand-bits/package.json +++ b/lib/node_modules/@stdlib/constants/float32/num-significand-bits/package.json @@ -57,7 +57,7 @@ "math", "float", "float32", - "64bit", + "32bit", "floating-point", "ieee754", "significand",