From 2ffbfdf40f371020fb15473c090df26118a3c781 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 21:00:29 -0700 Subject: [PATCH] Version Packages (#208) Co-authored-by: github-actions[bot] --- .changeset/lucky-waves-battle.md | 14 -------------- .changeset/nervous-ducks-draw.md | 7 ------- .changeset/rotten-goats-marry.md | 6 ------ packages/http-client/CHANGELOG.md | 21 +++++++++++++++++++++ packages/http-client/package.json | 2 +- packages/http-server/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/http-server/package.json | 2 +- packages/protocol/CHANGELOG.md | 14 ++++++++++++++ packages/protocol/package.json | 2 +- 9 files changed, 60 insertions(+), 30 deletions(-) delete mode 100644 .changeset/lucky-waves-battle.md delete mode 100644 .changeset/nervous-ducks-draw.md delete mode 100644 .changeset/rotten-goats-marry.md diff --git a/.changeset/lucky-waves-battle.md b/.changeset/lucky-waves-battle.md deleted file mode 100644 index 00f66fc8..00000000 --- a/.changeset/lucky-waves-battle.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@tbdex/http-client": minor -"@tbdex/http-server": minor -"@tbdex/protocol": minor ---- - -Add new `Balance` Resource type and associated server endpoint, config, and client calling methods - - -Update `Offering` Resource and `RFQ` Message type to accept new simplified fields. - -Add detachable `privateData` field to `RFQ` Message type and hash data into `data` field - -Add optional `success` field to `Close` message \ No newline at end of file diff --git a/.changeset/nervous-ducks-draw.md b/.changeset/nervous-ducks-draw.md deleted file mode 100644 index c31e1f83..00000000 --- a/.changeset/nervous-ducks-draw.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@tbdex/http-client": minor -"@tbdex/http-server": minor -"@tbdex/protocol": minor ---- - -Bumps Web5 packages diff --git a/.changeset/rotten-goats-marry.md b/.changeset/rotten-goats-marry.md deleted file mode 100644 index 7c412d78..00000000 --- a/.changeset/rotten-goats-marry.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@tbdex/http-client": minor -"@tbdex/http-server": minor ---- - -Restructure HTTP exchange endpoints diff --git a/packages/http-client/CHANGELOG.md b/packages/http-client/CHANGELOG.md index 559b355b..47e6985b 100644 --- a/packages/http-client/CHANGELOG.md +++ b/packages/http-client/CHANGELOG.md @@ -1,5 +1,26 @@ # @tbdex/http-client +## 0.28.0 + +### Minor Changes + +- [#226](https://github.com/TBD54566975/tbdex-js/pull/226) [`65439c2`](https://github.com/TBD54566975/tbdex-js/commit/65439c2386901240fde35a52f72bf552ace21351) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Add new `Balance` Resource type and associated server endpoint, config, and client calling methods + + Update `Offering` Resource and `RFQ` Message type to accept new simplified fields. + + Add detachable `privateData` field to `RFQ` Message type and hash data into `data` field + + Add optional `success` field to `Close` message + +- [#227](https://github.com/TBD54566975/tbdex-js/pull/227) [`90ee330`](https://github.com/TBD54566975/tbdex-js/commit/90ee330bd27981da6e2bf4c992f22d86d0acbf6b) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Bumps Web5 packages + +- [#204](https://github.com/TBD54566975/tbdex-js/pull/204) [`69d10f0`](https://github.com/TBD54566975/tbdex-js/commit/69d10f08956cd08446494d85208d68570f1bc3d1) Thanks [@diehuxx](https://github.com/diehuxx)! - Restructure HTTP exchange endpoints + +### Patch Changes + +- Updated dependencies [[`65439c2`](https://github.com/TBD54566975/tbdex-js/commit/65439c2386901240fde35a52f72bf552ace21351), [`90ee330`](https://github.com/TBD54566975/tbdex-js/commit/90ee330bd27981da6e2bf4c992f22d86d0acbf6b)]: + - @tbdex/protocol@0.28.0 + ## 0.27.0 ### Patch Changes diff --git a/packages/http-client/package.json b/packages/http-client/package.json index 8aeec842..695bb336 100644 --- a/packages/http-client/package.json +++ b/packages/http-client/package.json @@ -1,6 +1,6 @@ { "name": "@tbdex/http-client", - "version": "0.27.0", + "version": "0.28.0", "type": "module", "description": "Http client that can be used to send tbdex messages", "license": "Apache-2.0", diff --git a/packages/http-server/CHANGELOG.md b/packages/http-server/CHANGELOG.md index 78840742..194d38c6 100644 --- a/packages/http-server/CHANGELOG.md +++ b/packages/http-server/CHANGELOG.md @@ -1,5 +1,27 @@ # @tbdex/http-server +## 0.28.0 + +### Minor Changes + +- [#226](https://github.com/TBD54566975/tbdex-js/pull/226) [`65439c2`](https://github.com/TBD54566975/tbdex-js/commit/65439c2386901240fde35a52f72bf552ace21351) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Add new `Balance` Resource type and associated server endpoint, config, and client calling methods + + Update `Offering` Resource and `RFQ` Message type to accept new simplified fields. + + Add detachable `privateData` field to `RFQ` Message type and hash data into `data` field + + Add optional `success` field to `Close` message + +- [#227](https://github.com/TBD54566975/tbdex-js/pull/227) [`90ee330`](https://github.com/TBD54566975/tbdex-js/commit/90ee330bd27981da6e2bf4c992f22d86d0acbf6b) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Bumps Web5 packages + +- [#204](https://github.com/TBD54566975/tbdex-js/pull/204) [`69d10f0`](https://github.com/TBD54566975/tbdex-js/commit/69d10f08956cd08446494d85208d68570f1bc3d1) Thanks [@diehuxx](https://github.com/diehuxx)! - Restructure HTTP exchange endpoints + +### Patch Changes + +- Updated dependencies [[`65439c2`](https://github.com/TBD54566975/tbdex-js/commit/65439c2386901240fde35a52f72bf552ace21351), [`90ee330`](https://github.com/TBD54566975/tbdex-js/commit/90ee330bd27981da6e2bf4c992f22d86d0acbf6b), [`69d10f0`](https://github.com/TBD54566975/tbdex-js/commit/69d10f08956cd08446494d85208d68570f1bc3d1)]: + - @tbdex/http-client@0.28.0 + - @tbdex/protocol@0.28.0 + ## 0.27.0 ### Minor Changes diff --git a/packages/http-server/package.json b/packages/http-server/package.json index c39868a3..f31ec2ef 100644 --- a/packages/http-server/package.json +++ b/packages/http-server/package.json @@ -9,7 +9,7 @@ }, "license": "Apache-2.0", "type": "module", - "version": "0.27.0", + "version": "0.28.0", "module": "./dist/main.js", "types": "./dist/types/main.d.ts", "files": [ diff --git a/packages/protocol/CHANGELOG.md b/packages/protocol/CHANGELOG.md index 71d0b266..13fbe4e2 100644 --- a/packages/protocol/CHANGELOG.md +++ b/packages/protocol/CHANGELOG.md @@ -1,5 +1,19 @@ # @tbdex/protocol +## 0.28.0 + +### Minor Changes + +- [#226](https://github.com/TBD54566975/tbdex-js/pull/226) [`65439c2`](https://github.com/TBD54566975/tbdex-js/commit/65439c2386901240fde35a52f72bf552ace21351) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Add new `Balance` Resource type and associated server endpoint, config, and client calling methods + + Update `Offering` Resource and `RFQ` Message type to accept new simplified fields. + + Add detachable `privateData` field to `RFQ` Message type and hash data into `data` field + + Add optional `success` field to `Close` message + +- [#227](https://github.com/TBD54566975/tbdex-js/pull/227) [`90ee330`](https://github.com/TBD54566975/tbdex-js/commit/90ee330bd27981da6e2bf4c992f22d86d0acbf6b) Thanks [@kirahsapong](https://github.com/kirahsapong)! - Bumps Web5 packages + ## 0.27.0 ### Minor Changes diff --git a/packages/protocol/package.json b/packages/protocol/package.json index b1f8517c..dac92a50 100644 --- a/packages/protocol/package.json +++ b/packages/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@tbdex/protocol", - "version": "0.27.0", + "version": "0.28.0", "type": "module", "description": "Library that includes type definitions for tbdex messages", "license": "Apache-2.0",