From d3c43d565db1096ca46cf4d78b01cec0c24729a9 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 12 Jun 2026 00:14:00 +0000 Subject: [PATCH 1/2] chore: add `unsigned` keyword to `number/uint32/base/add` The `unsigned` keyword is present in 8 of the 10 sibling `@stdlib/number/uint32/base/*` packages (80% conformance); `add` and `sub` were the only outliers. The function operates on unsigned 32-bit integers, so the keyword applies. https://claude.ai/code/session_019SVGtKk9jEos5C9ecE4ni2 --- lib/node_modules/@stdlib/number/uint32/base/add/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/number/uint32/base/add/package.json b/lib/node_modules/@stdlib/number/uint32/base/add/package.json index 26127d09b6ec..a4accec66554 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/add/package.json +++ b/lib/node_modules/@stdlib/number/uint32/base/add/package.json @@ -63,6 +63,7 @@ "number", "uint32", "integer", + "unsigned", "c" ], "__stdlib__": { From 7b3971f607787c2cdf78545c2bd8f465c877c7e1 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 12 Jun 2026 00:14:05 +0000 Subject: [PATCH 2/2] chore: add `unsigned` keyword to `number/uint32/base/sub` The `unsigned` keyword is present in 8 of the 10 sibling `@stdlib/number/uint32/base/*` packages (80% conformance); `add` and `sub` were the only outliers. The function operates on unsigned 32-bit integers, so the keyword applies. https://claude.ai/code/session_019SVGtKk9jEos5C9ecE4ni2 --- lib/node_modules/@stdlib/number/uint32/base/sub/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/number/uint32/base/sub/package.json b/lib/node_modules/@stdlib/number/uint32/base/sub/package.json index e5fdf8164184..902501824c8b 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/sub/package.json +++ b/lib/node_modules/@stdlib/number/uint32/base/sub/package.json @@ -62,6 +62,7 @@ "number", "uint32", "integer", + "unsigned", "c" ], "__stdlib__": {