Skip to content

Commit

Permalink
Version Packages (#208)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Apr 2, 2024
1 parent 90ee330 commit 2ffbfdf
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 30 deletions.
14 changes: 0 additions & 14 deletions .changeset/lucky-waves-battle.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/nervous-ducks-draw.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/rotten-goats-marry.md

This file was deleted.

21 changes: 21 additions & 0 deletions packages/http-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/http-client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
22 changes: 22 additions & 0 deletions packages/http-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/http-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
14 changes: 14 additions & 0 deletions packages/protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2ffbfdf

Please sign in to comment.