File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 ` :**
Original file line number Diff line number Diff line change 1- 0.10.2
1+ 0.10.3
Original file line number Diff line number Diff line change 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 }
Original file line number Diff line number Diff line change 22 "name" : " templates-plugin-python" ,
33 "private" : true ,
44 "dependencies" : {
5- "polywrap" : " 0.10.2"
5+ "polywrap" : " ~ 0.10.2"
66 }
77}
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change 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" ,
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}
Original file line number Diff line number Diff line change 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" ,
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}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "MIT"
88edition = " 2021"
99
1010[dependencies ]
11- polywrap-wasm-rs = { version = " 0.10.2" }
11+ polywrap-wasm-rs = { version = " ~ 0.10.2" }
1212serde = { version = " 1.0" , features = [" derive" ] }
1313
1414[lib ]
Original file line number Diff line number Diff line change 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" ,
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 }
You can’t perform that action at this time.
0 commit comments