Skip to content

Commit 511dd38

Browse files
committed
chore: update VERSION & CHANGELOG
1 parent ed4f37d commit 511dd38

9 files changed

Lines changed: 30 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Polywrap Origin (0.10.3)
2+
## Bugs
3+
**`@polywrap/schema-bind`:**
4+
* [PR-1734](https://github.com/polywrap/toolchain/pull/1734) **Update `plugin/python` Bindings**
5+
* Update `wrap.info` python module embedding.
6+
* [PR-1728](https://github.com/polywrap/toolchain/pull/1728) **Update `plugin/rust` Bindings**
7+
* Modify JSON serialization within rust plugin's bindings.
8+
* [PR-1736](https://github.com/polywrap/toolchain/pull/1736) **Properly emit function name when `Env` is missing**
9+
* Fixed the error message that's emitted when an environment is not supplied to a function that requires it.
10+
* [PR-1733](https://github.com/polywrap/toolchain/pull/1733) **Add imported `Env` to `propertyDeps` transform**
11+
* Adds imported `Env` to `propertyDeps` transform, so that now codegen properly generates imports for dependencies of imported env.
12+
113
# Polywrap Origin (0.10.2)
214
## Bugs
315
**`@polywrap/schema-bind`:**

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.2
1+
0.10.3

packages/templates/app/typescript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"name": "templates-app-typescript",
33
"description": "Polywrap App TypeScript Template",
44
"private": true,
5-
"version": "0.10.2",
5+
"version": "0.1.0",
66
"scripts": {
77
"build": "npx polywrap codegen",
88
"test": "ts-node ./src/index.ts"
99
},
1010
"dependencies": {
11-
"@polywrap/client-js": "0.10.0"
11+
"@polywrap/client-js": "~0.10.0"
1212
},
1313
"devDependencies": {
1414
"@types/node": "^18.14.6",
15-
"polywrap": "0.10.2",
15+
"polywrap": "~0.10.2",
1616
"ts-node": "10.9.1",
1717
"typescript": "4.9.5"
1818
}

packages/templates/plugin/python/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "templates-plugin-python",
33
"private": true,
44
"dependencies": {
5-
"polywrap": "0.10.2"
5+
"polywrap": "~0.10.2"
66
}
77
}

packages/templates/plugin/typescript/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "templates-plugin-typescript",
33
"description": "Polywrap Plugin Typescript Template",
44
"private": true,
5-
"version": "0.10.2",
5+
"version": "0.1.0",
66
"main": "build/index.js",
77
"scripts": {
88
"build": "rimraf ./build && yarn codegen && tsc --project tsconfig.json",
@@ -11,19 +11,19 @@
1111
"test:watch": "yarn test -- --watch"
1212
},
1313
"dependencies": {
14-
"@polywrap/core-js": "0.10.0",
15-
"@polywrap/plugin-js": "0.10.0"
14+
"@polywrap/core-js": "~0.10.0",
15+
"@polywrap/plugin-js": "~0.10.0"
1616
},
1717
"peerDependencies": {
1818
"@polywrap/core-js": "0.10.x",
1919
"@polywrap/plugin-js": "0.10.x"
2020
},
2121
"devDependencies": {
22-
"@polywrap/client-js": "0.10.0",
22+
"@polywrap/client-js": "~0.10.0",
2323
"@types/jest": "26.0.8",
2424
"@types/prettier": "2.6.0",
2525
"jest": "26.6.3",
26-
"polywrap": "0.10.2",
26+
"polywrap": "~0.10.2",
2727
"rimraf": "3.0.2",
2828
"ts-jest": "26.5.4",
2929
"ts-node": "10.9.1",

packages/templates/wasm/assemblyscript/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "template-wasm-as",
33
"description": "Polywrap AssemblyScript Wrapper Template",
44
"private": true,
5-
"version": "0.10.2",
5+
"version": "0.1.0",
66
"scripts": {
77
"codegen": "npx polywrap codegen",
88
"build": "npx polywrap build",
@@ -17,12 +17,12 @@
1717
"devDependencies": {
1818
"@types/jest": "26.0.8",
1919
"jest": "26.6.3",
20-
"polywrap": "0.10.2",
20+
"polywrap": "~0.10.2",
2121
"ts-jest": "26.5.4",
2222
"typescript": "4.9.5"
2323
},
2424
"dependencies": {
25-
"@polywrap/wasm-as": "0.10.2",
25+
"@polywrap/wasm-as": "~0.10.2",
2626
"assemblyscript": "0.19.23"
2727
}
2828
}

packages/templates/wasm/interface/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "templates-wrapper-interface",
33
"description": "Polywrap Interface Example",
44
"private": true,
5-
"version": "0.10.2",
5+
"version": "0.1.0",
66
"scripts": {
77
"build": "npx polywrap build",
88
"test:env:up": "npx polywrap infra up --modules=eth-ens-ipfs",
@@ -11,6 +11,6 @@
1111
"test": "yarn test:env:up && yarn deploy && yarn test:env:down"
1212
},
1313
"devDependencies": {
14-
"polywrap": "0.10.2"
14+
"polywrap": "~0.10.2"
1515
}
1616
}

packages/templates/wasm/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
edition = "2021"
99

1010
[dependencies]
11-
polywrap-wasm-rs = { version = "0.10.2" }
11+
polywrap-wasm-rs = { version = "~0.10.2" }
1212
serde = { version = "1.0", features = ["derive"] }
1313

1414
[lib]

packages/templates/wasm/rust/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "template-wasm-rs",
33
"description": "Polywrap Rust Wrapper Template",
44
"private": true,
5-
"version": "0.10.2",
5+
"version": "0.1.0",
66
"scripts": {
77
"codegen": "npx polywrap codegen",
88
"build": "npx polywrap build",
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"@types/jest": "26.0.8",
1919
"jest": "26.6.3",
20-
"polywrap": "0.10.2",
20+
"polywrap": "~0.10.2",
2121
"ts-jest": "26.5.4",
2222
"typescript": "4.9.5"
2323
}

0 commit comments

Comments
 (0)