@quonfig/react-native 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.3 - 2026-05-14
4
+
5
+ - CI / tooling only — no functional or public API changes. Made the release workflow's test gate
6
+ real by adding a polyfill smoke test (`test/polyfill.test.cjs`) and switching the `test` script to
7
+ an explicit file path for Node 20 compatibility. Bumped GitHub Actions dependencies:
8
+ `actions/checkout` 3.6.0 → 6.0.2, `actions/cache` 4.3.0 → 5.0.5, `actions/setup-node` 4.4.0 →
9
+ 6.4.0.
10
+
3
11
  ## 0.0.2 - 2026-05-13
4
12
 
5
13
  - First version published to npm. No functional changes from `0.0.1`. Version bumped solely to
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "packageManager": "yarn@4.11.0",
3
3
  "name": "@quonfig/react-native",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "description": "React Native bindings for Quonfig — a thin polyfill wrapper around @quonfig/react",
6
6
  "main": "dist/index.cjs",
7
7
  "module": "dist/index.mjs",
@@ -38,6 +38,7 @@
38
38
  "prettier": "prettier . -l",
39
39
  "prettier:fix": "prettier --write .",
40
40
  "prettier:check": "prettier . -l",
41
+ "test": "node --test test/polyfill.test.cjs",
41
42
  "version": "prettier --write CHANGELOG.md README.md && git add CHANGELOG.md README.md"
42
43
  },
43
44
  "author": "Jeffrey Chupp",