diff --git a/.changeset/gentle-zoos-love.md b/.changeset/gentle-zoos-love.md deleted file mode 100644 index 044c8b5f6..000000000 --- a/.changeset/gentle-zoos-love.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'walletd': minor -'@siafoundation/walletd-types': minor ---- - -Updated wallet events to include maturityHeight and renamed val to data. Closes https://github.com/SiaFoundation/walletd/issues/114 diff --git a/.changeset/six-fishes-check.md b/.changeset/six-fishes-check.md deleted file mode 100644 index b7b5db8ca..000000000 --- a/.changeset/six-fishes-check.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'walletd': minor ---- - -The events list now shows the maturity height, transactions that have not reached this height are shown as locked. Closes https://github.com/SiaFoundation/walletd/issues/115 diff --git a/apps/walletd/CHANGELOG.md b/apps/walletd/CHANGELOG.md index 6f31f6884..e96a4c19d 100644 --- a/apps/walletd/CHANGELOG.md +++ b/apps/walletd/CHANGELOG.md @@ -1,5 +1,12 @@ # walletd +## 0.20.0 + +### Minor Changes + +- 0e393885: Updated wallet events to include maturityHeight and renamed val to data. Closes https://github.com/SiaFoundation/walletd/issues/114 +- 0e393885: The events list now shows the maturity height, transactions that have not reached this height are shown as locked. Closes https://github.com/SiaFoundation/walletd/issues/115 + ## 0.19.1 ### Patch Changes diff --git a/apps/walletd/package.json b/apps/walletd/package.json index 77adc808f..5b8337ee1 100644 --- a/apps/walletd/package.json +++ b/apps/walletd/package.json @@ -1,7 +1,7 @@ { "name": "walletd", "description": "The `walletd` user interface, includes a wallet with support for hot, cold, and hardware wallets.", - "version": "0.19.1", + "version": "0.20.0", "private": true, "license": "MIT" } diff --git a/libs/walletd-js/CHANGELOG.md b/libs/walletd-js/CHANGELOG.md index 8f15270a1..67e8a4840 100644 --- a/libs/walletd-js/CHANGELOG.md +++ b/libs/walletd-js/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-js +## 0.1.1 + +### Patch Changes + +- Updated dependencies [0e393885] + - @siafoundation/walletd-types@0.2.0 + ## 0.1.0 ### Minor Changes diff --git a/libs/walletd-js/package.json b/libs/walletd-js/package.json index d44d9bc5c..d8f5b5832 100644 --- a/libs/walletd-js/package.json +++ b/libs/walletd-js/package.json @@ -1,11 +1,11 @@ { "name": "@siafoundation/walletd-js", "description": "SDK for interacting with `walletd`.", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT", "dependencies": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.1.1" + "@siafoundation/walletd-types": "0.2.0" }, "types": "./src/index.d.ts" } diff --git a/libs/walletd-mock/CHANGELOG.md b/libs/walletd-mock/CHANGELOG.md index d0d76d72e..65f01a5bd 100644 --- a/libs/walletd-mock/CHANGELOG.md +++ b/libs/walletd-mock/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-mock +## 0.1.3 + +### Patch Changes + +- Updated dependencies [0e393885] + - @siafoundation/walletd-types@0.2.0 + ## 0.1.2 ### Patch Changes diff --git a/libs/walletd-mock/package.json b/libs/walletd-mock/package.json index f528ff642..4b02cf871 100644 --- a/libs/walletd-mock/package.json +++ b/libs/walletd-mock/package.json @@ -1,14 +1,14 @@ { "name": "@siafoundation/walletd-mock", "description": "walletd data and API mock library for testing.", - "version": "0.1.2", + "version": "0.1.3", "license": "MIT", "dependencies": { "@siafoundation/types": "0.2.0", "@siafoundation/sia-central-mock": "0.1.1", "@siafoundation/units": "3.0.2", "playwright": "^1.42.1", - "@siafoundation/walletd-types": "0.1.1" + "@siafoundation/walletd-types": "0.2.0" }, "types": "./src/index.d.ts" } diff --git a/libs/walletd-react/CHANGELOG.md b/libs/walletd-react/CHANGELOG.md index 62571ac09..513227847 100644 --- a/libs/walletd-react/CHANGELOG.md +++ b/libs/walletd-react/CHANGELOG.md @@ -1,5 +1,12 @@ # @siafoundation/walletd-react +## 4.1.2 + +### Patch Changes + +- Updated dependencies [0e393885] + - @siafoundation/walletd-types@0.2.0 + ## 4.1.1 ### Patch Changes diff --git a/libs/walletd-react/package.json b/libs/walletd-react/package.json index d78931c57..e72d3e9c6 100644 --- a/libs/walletd-react/package.json +++ b/libs/walletd-react/package.json @@ -1,12 +1,12 @@ { "name": "@siafoundation/walletd-react", "description": "React hooks for interacting with `walletd`.", - "version": "4.1.1", + "version": "4.1.2", "license": "MIT", "dependencies": { "@siafoundation/react-core": "^1.2.0", "swr": "^2.1.1", - "@siafoundation/walletd-types": "0.1.1" + "@siafoundation/walletd-types": "0.2.0" }, "types": "./src/index.d.ts" } diff --git a/libs/walletd-types/CHANGELOG.md b/libs/walletd-types/CHANGELOG.md index fe68b2d49..93fcc1e67 100644 --- a/libs/walletd-types/CHANGELOG.md +++ b/libs/walletd-types/CHANGELOG.md @@ -1,5 +1,11 @@ # @siafoundation/walletd-types +## 0.2.0 + +### Minor Changes + +- 0e393885: Updated wallet events to include maturityHeight and renamed val to data. Closes https://github.com/SiaFoundation/walletd/issues/114 + ## 0.1.1 ### Patch Changes diff --git a/libs/walletd-types/package.json b/libs/walletd-types/package.json index 7a2a1f0ed..9df93ef53 100644 --- a/libs/walletd-types/package.json +++ b/libs/walletd-types/package.json @@ -1,7 +1,7 @@ { "name": "@siafoundation/walletd-types", "description": "Types for `walletd`.", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.2.0" diff --git a/package-lock.json b/package-lock.json index 36d11013f..7391c8fff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -238,7 +238,7 @@ "license": "MIT" }, "apps/walletd": { - "version": "0.19.1", + "version": "0.20.0", "license": "MIT" }, "apps/website": { @@ -661,38 +661,38 @@ }, "libs/walletd-js": { "name": "@siafoundation/walletd-js", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT", "dependencies": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.1.1" + "@siafoundation/walletd-types": "0.2.0" } }, "libs/walletd-mock": { "name": "@siafoundation/walletd-mock", - "version": "0.1.2", + "version": "0.1.3", "license": "MIT", "dependencies": { "@siafoundation/sia-central-mock": "0.1.1", "@siafoundation/types": "0.2.0", "@siafoundation/units": "3.0.2", - "@siafoundation/walletd-types": "0.1.1", + "@siafoundation/walletd-types": "0.2.0", "playwright": "^1.42.1" } }, "libs/walletd-react": { "name": "@siafoundation/walletd-react", - "version": "4.1.1", + "version": "4.1.2", "license": "MIT", "dependencies": { "@siafoundation/react-core": "^1.2.0", - "@siafoundation/walletd-types": "0.1.1", + "@siafoundation/walletd-types": "0.2.0", "swr": "^2.1.1" } }, "libs/walletd-types": { "name": "@siafoundation/walletd-types", - "version": "0.1.1", + "version": "0.2.0", "license": "MIT", "dependencies": { "@siafoundation/types": "^0.2.0" @@ -33970,7 +33970,7 @@ "version": "file:libs/walletd-js", "requires": { "@siafoundation/request": "0.2.0", - "@siafoundation/walletd-types": "0.1.1" + "@siafoundation/walletd-types": "0.2.0" } }, "@siafoundation/walletd-mock": { @@ -33979,7 +33979,7 @@ "@siafoundation/sia-central-mock": "0.1.1", "@siafoundation/types": "0.2.0", "@siafoundation/units": "3.0.2", - "@siafoundation/walletd-types": "0.1.1", + "@siafoundation/walletd-types": "0.2.0", "playwright": "^1.42.1" } }, @@ -33987,7 +33987,7 @@ "version": "file:libs/walletd-react", "requires": { "@siafoundation/react-core": "^1.2.0", - "@siafoundation/walletd-types": "0.1.1", + "@siafoundation/walletd-types": "0.2.0", "swr": "^2.1.1" } },