pi-usereq 0.32.0 → 0.33.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.
@@ -57,9 +57,6 @@ jobs:
57
57
  registry-url: 'https://registry.npmjs.org'
58
58
  package-manager-cache: false # never use caching in release builds
59
59
 
60
- # - name: Imposta il registro npm esplicitamente per OIDC
61
- # run: npm config set registry https://registry.npmjs.org/
62
-
63
60
  - name: Install dependencies
64
61
  run: npm ci
65
62
 
@@ -70,10 +67,7 @@ jobs:
70
67
  run: npm pkg delete private
71
68
 
72
69
  - name: Publish package to npm
73
- # run: npm publish # Or: npm stage publish
74
- run: npm publish --provenance --access public
75
- # env:
76
- # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
70
+ run: npm publish # Or: npm stage publish
77
71
 
78
72
  - name: Build Changelog
79
73
  id: build_changelog
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.33.0](https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0) - 2026-05-29
4
+ ### 🐛 Bug Fixes
5
+ - Clean workflow file after all tests and bug fixes.
6
+
3
7
  ## [0.32.0](https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0) - 2026-05-29
4
8
  ### 🐛 Bug Fixes
5
9
  - Revert workflow.
@@ -484,6 +488,7 @@
484
488
  - \[0.30.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.30.0
485
489
  - \[0.31.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.31.0
486
490
  - \[0.32.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.32.0
491
+ - \[0.33.0\]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.33.0
487
492
 
488
493
  [0.1.0]: https://github.com/Ogekuri/PI-useReq/releases/tag/v0.1.0
489
494
  [0.2.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.1.0..v0.2.0
@@ -515,3 +520,4 @@
515
520
  [0.30.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.29.0..v0.30.0
516
521
  [0.31.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.30.0..v0.31.0
517
522
  [0.32.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.31.0..v0.32.0
523
+ [0.33.0]: https://github.com/Ogekuri/PI-useReq/compare/v0.32.0..v0.33.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # PI-useReq/pi-usereq (0.32.0)
1
+ # PI-useReq/pi-usereq (0.33.0)
2
2
 
3
3
  <p align="center">
4
4
  <img src="https://img.shields.io/badge/python-3.11%2B-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python 3.11+">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-usereq",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Ogekuri/PI-useReq.git"
package/src/index.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  * @brief Declares the extension version string.
9
9
  * @details The value is exported for external inspection and packaging metadata alignment. Access complexity is O(1).
10
10
  */
11
- export const VERSION = "0.32.0";
11
+ export const VERSION = "0.33.0";
12
12
 
13
13
  import fs from "node:fs";
14
14
  import path from "node:path";