Skip to content

Commit

Permalink
6.0.1 (#330)
Browse files Browse the repository at this point in the history
* 5.2.1

* 6.0.1

* CHANGELOG

* Bump dev
  • Loading branch information
jacogr authored Apr 9, 2022
1 parent e435c1e commit 763cd47
Show file tree
Hide file tree
Showing 9 changed files with 156 additions and 153 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# CHANGELOG

## master
## 6.0.1 Apr 9, 2022

- **Breaking change** In this major version the commonjs outputs are moved to a sub-folder. Since the `export` map and `main` field in `package.json` does reflect this change, there should be no usage changes. However the packages here will all need to be on the same version for internal linkage.

Changes:

- Update ed25519 secret key format return description
- Allow for CJS file locations under `cjs/**` root
- Output commonjs files under the `cjs/**` root


## 5.1.1 Mar 27, 2022
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/polkadot-js/wasm.git"
},
"sideEffects": false,
"version": "5.1.2-4",
"version": "6.0.0",
"workspaces": [
"packages/*"
],
Expand All @@ -31,8 +31,8 @@
"test:wasm:rust": "cd packages/wasm-crypto && RUST_BACKTRACE=full cargo test --release -- --test-threads=1 --nocapture"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@polkadot/dev": "^0.65.106",
"@babel/core": "^7.17.9",
"@polkadot/dev": "^0.66.1",
"fflate": "^0.7.3",
"override-require": "^1.1.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/wasm-crypto-asmjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"sideEffects": false,
"type": "module",
"version": "5.1.2-4",
"version": "6.0.0",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.17.8"
"@babel/runtime": "^7.17.9"
},
"devDependencies": {
"@polkadot/util": "^8.7.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-asmjs/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/wasm-crypto-asmjs', path: 'auto', type: 'auto', version: '5.1.2-4' };
export const packageInfo = { name: '@polkadot/wasm-crypto-asmjs', path: 'auto', type: 'auto', version: '6.0.0' };
4 changes: 2 additions & 2 deletions packages/wasm-crypto-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"sideEffects": false,
"type": "module",
"version": "5.1.2-4",
"version": "6.0.0",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.17.8"
"@babel/runtime": "^7.17.9"
},
"devDependencies": {
"@polkadot/util": "^8.7.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-wasm/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/wasm-crypto-wasm', path: 'auto', type: 'auto', version: '5.1.2-4' };
export const packageInfo = { name: '@polkadot/wasm-crypto-wasm', path: 'auto', type: 'auto', version: '6.0.0' };
8 changes: 4 additions & 4 deletions packages/wasm-crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"./initWasmAsm.cjs"
],
"type": "module",
"version": "5.1.2-4",
"version": "6.0.0",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.17.8",
"@polkadot/wasm-crypto-asmjs": "^5.1.2-4",
"@polkadot/wasm-crypto-wasm": "^5.1.2-4"
"@babel/runtime": "^7.17.9",
"@polkadot/wasm-crypto-asmjs": "^6.0.0",
"@polkadot/wasm-crypto-wasm": "^6.0.0"
},
"devDependencies": {
"@polkadot/util": "^8.7.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/wasm-crypto', path: 'auto', type: 'auto', version: '5.1.2-4' };
export const packageInfo = { name: '@polkadot/wasm-crypto', path: 'auto', type: 'auto', version: '6.0.0' };
Loading

0 comments on commit 763cd47

Please sign in to comment.