wrapture 0.1.21 → 0.1.23
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.
- package/CHANGELOG.md +12 -0
- package/api/README.md +1 -1
- package/api/utils/check-deps.md +1 -1
- package/api/utils/convert.md +1 -1
- package/api/utils/generate-wrapper.md +1 -1
- package/api/utils/log-level.md +1 -1
- package/api/wrapture.md +1 -1
- package/bin/wrapture.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.23](https://github.com/phun-ky/wrapture/compare/0.1.22...0.1.23) (2025-09-23)
|
|
4
|
+
|
|
5
|
+
### Tasks
|
|
6
|
+
|
|
7
|
+
* 🤖 bump the minor-and-patch group with 7 updates ([6359f5b](https://github.com/phun-ky/wrapture/commit/6359f5bacdbc24050bf17a9cfe6413967ba9c8a7))
|
|
8
|
+
|
|
9
|
+
## [0.1.22](https://github.com/phun-ky/wrapture/compare/0.1.21...0.1.22) (2025-09-15)
|
|
10
|
+
|
|
11
|
+
### Tasks
|
|
12
|
+
|
|
13
|
+
* 🤖 bump the minor-and-patch group with 6 updates ([6f877f4](https://github.com/phun-ky/wrapture/commit/6f877f417ab8e700768fbb77cad84de103337f92))
|
|
14
|
+
|
|
3
15
|
## [0.1.21](https://github.com/phun-ky/wrapture/compare/0.1.20...0.1.21) (2025-09-09)
|
|
4
16
|
|
|
5
17
|
### Tasks
|
package/api/README.md
CHANGED
package/api/utils/check-deps.md
CHANGED
package/api/utils/convert.md
CHANGED
package/api/utils/log-level.md
CHANGED
package/api/wrapture.md
CHANGED
package/bin/wrapture.js
CHANGED
|
@@ -10,7 +10,7 @@ import path3 from "path";
|
|
|
10
10
|
// package.json
|
|
11
11
|
var package_default = {
|
|
12
12
|
name: "wrapture",
|
|
13
|
-
version: "0.1.
|
|
13
|
+
version: "0.1.23",
|
|
14
14
|
description: "Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.",
|
|
15
15
|
keywords: [
|
|
16
16
|
"onnx",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrapture",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"onnx",
|