Release 0.2.0

This commit is contained in:
Franck 2022-01-03 10:06:42 +11:00
parent bc37f2ad99
commit 144ac9252b
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
12 changed files with 39 additions and 36 deletions

View File

@ -7,14 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## Fixed
## [0.2.0] - 2022-01-03
### Fixed
- Upgrades: `ethers@5.4.6`, `ethereum-waffle@3.4.0`,`@usedapp/core@0.5.5` to ensure there are no conflicting version of
ethers in the codebase.
## [0.1.0] - 2021-12-23
### [0.1.0] - 2021-12-23
- Initial release.
[Unreleased]: https://github.com/status-im/js-waku/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/status-im/js-waku/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/status-im/js-waku/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/status-im/js-waku/compare/bce7cf74f07f673643da6152a707215bdc8369af...v0.1.0

View File

@ -1,6 +1,6 @@
{
"name": "@waku/vote-sdk-contracts",
"version": "0.1.0",
"version": "0.2.0",
"main": "index.js",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"license": "MIT OR Apache-2.0",

View File

@ -4,7 +4,7 @@
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT OR Apache-2.0",
"publishConfig": {
"access": "public"
@ -47,7 +47,7 @@
"typescript": "^4.3.5"
},
"dependencies": {
"@waku/vote-sdk-contracts": "^0.1.0",
"@waku/vote-sdk-contracts": "^0.2.0",
"eth-sig-util": "^3.0.1",
"ethers": "5.4.6",
"js-waku": "^0.11.0",

View File

@ -1,7 +1,7 @@
{
"name": "@waku/vote-poll-sdk-example",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "index.js",
"license": "MIT OR Apache-2.0",
"scripts": {
@ -16,8 +16,8 @@
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@waku/poll-sdk-example": "^0.1.0",
"@waku/vote-sdk-example": "^0.1.0",
"@waku/poll-sdk-example": "^0.2.0",
"@waku/vote-sdk-example": "^0.2.0",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
"prettier": "^2.3.2",

View File

@ -1,6 +1,6 @@
{
"name": "@waku/mainnet-poll-sdk-example",
"version": "0.1.0",
"version": "0.2.0",
"main": "index.js",
"license": "MIT OR Apache-2.0",
"scripts": {
@ -16,9 +16,9 @@
},
"dependencies": {
"@usedapp/core": "0.5.5",
"@waku/poll-sdk-react-components": "^0.1.0",
"@waku/poll-sdk-react-hooks": "^0.1.0",
"@waku/vote-poll-sdk-react-components": "^0.1.0",
"@waku/poll-sdk-react-components": "^0.2.0",
"@waku/poll-sdk-react-hooks": "^0.2.0",
"@waku/vote-poll-sdk-react-components": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",

View File

@ -1,7 +1,7 @@
{
"name": "@waku/poll-sdk-example",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -34,9 +34,9 @@
},
"dependencies": {
"@usedapp/core": "0.5.5",
"@waku/poll-sdk-react-components": "^0.1.0",
"@waku/poll-sdk-react-hooks": "^0.1.0",
"@waku/vote-poll-sdk-react-components": "^0.1.0",
"@waku/poll-sdk-react-components": "^0.2.0",
"@waku/poll-sdk-react-hooks": "^0.2.0",
"@waku/vote-poll-sdk-react-components": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",

View File

@ -1,7 +1,7 @@
{
"name": "@waku/poll-sdk-react-components",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -36,9 +36,9 @@
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@waku/poll-sdk-react-hooks": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-react-components": "^0.1.0",
"@waku/poll-sdk-react-hooks": "^0.2.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"@waku/vote-poll-sdk-react-components": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"styled-components": "^5.3.0"

View File

@ -1,7 +1,7 @@
{
"name": "@waku/poll-sdk-react-hooks",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -33,7 +33,7 @@
},
"dependencies": {
"@usedapp/core": "0.5.5",
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"styled-components": "^5.3.0"

View File

@ -4,7 +4,7 @@
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT OR Apache-2.0",
"publishConfig": {
"access": "public"
@ -36,7 +36,7 @@
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"styled-components": "^5.3.0"

View File

@ -1,7 +1,7 @@
{
"name": "@waku/vote-sdk-example",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -34,10 +34,10 @@
},
"dependencies": {
"@usedapp/core": "0.5.5",
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-react-components": "^0.1.0",
"@waku/vote-sdk-react-components": "^0.1.0",
"@waku/vote-sdk-react-hooks": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"@waku/vote-poll-sdk-react-components": "^0.2.0",
"@waku/vote-sdk-react-components": "^0.2.0",
"@waku/vote-sdk-react-hooks": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"styled-components": "^5.3.0"

View File

@ -1,7 +1,7 @@
{
"name": "@waku/vote-sdk-react-components",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -36,9 +36,9 @@
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-react-components": "^0.1.0",
"@waku/vote-sdk-react-hooks": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"@waku/vote-poll-sdk-react-components": "^0.2.0",
"@waku/vote-sdk-react-hooks": "^0.2.0",
"ethers": "5.4.6",
"humanize-duration": "^3.27.0",
"react": "^17.0.2",

View File

@ -1,7 +1,7 @@
{
"name": "@waku/vote-sdk-react-hooks",
"repository": "https://github.com/status-im/wakuconnect-vote-poll-sdk",
"version": "0.1.0",
"version": "0.2.0",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
@ -32,7 +32,7 @@
"lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'"
},
"dependencies": {
"@waku/vote-poll-sdk-core": "^0.1.0",
"@waku/vote-poll-sdk-core": "^0.2.0",
"ethers": "5.4.6",
"react": "^17.0.2",
"styled-components": "^5.3.0"