diff --git a/.changeset/odd-owls-invite.md b/.changeset/odd-owls-invite.md deleted file mode 100644 index cb6e94c9..00000000 --- a/.changeset/odd-owls-invite.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@tbdex/protocol": major -"@tbdex/http-client": major -"@tbdex/http-server": major ---- - -Updated HTTP request body to contain `message` property according to spec change. diff --git a/.changeset/selfish-apricots-act.md b/.changeset/selfish-apricots-act.md deleted file mode 100644 index 098cae0d..00000000 --- a/.changeset/selfish-apricots-act.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@tbdex/protocol": major -"@tbdex/http-server": major ---- - -Updated code and tests to align with latest tbDEX spec (commit 621f54f of `tbdex` repo) diff --git a/.changeset/shiny-pillows-smile.md b/.changeset/shiny-pillows-smile.md deleted file mode 100644 index fbecd176..00000000 --- a/.changeset/shiny-pillows-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@tbdex/protocol": patch ---- - -Fix: use fragment in json schema refs. diff --git a/packages/http-client/CHANGELOG.md b/packages/http-client/CHANGELOG.md index f8a134f5..3dcce317 100644 --- a/packages/http-client/CHANGELOG.md +++ b/packages/http-client/CHANGELOG.md @@ -1,5 +1,16 @@ # @tbdex/http-client +## 2.0.0 + +### Major Changes + +- [#263](https://github.com/TBD54566975/tbdex-js/pull/263) [`c673b00`](https://github.com/TBD54566975/tbdex-js/commit/c673b0015b4a4cb2a954aad5e6bf233d70a0dcec) Thanks [@thehenrytsai](https://github.com/thehenrytsai)! - Updated HTTP request body to contain `message` property according to spec change. + +### Patch Changes + +- Updated dependencies [[`c673b00`](https://github.com/TBD54566975/tbdex-js/commit/c673b0015b4a4cb2a954aad5e6bf233d70a0dcec), [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040), [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040)]: + - @tbdex/protocol@2.0.0 + ## 1.1.0 ### Patch Changes diff --git a/packages/http-client/package.json b/packages/http-client/package.json index b9eded21..50be0db4 100644 --- a/packages/http-client/package.json +++ b/packages/http-client/package.json @@ -1,6 +1,6 @@ { "name": "@tbdex/http-client", - "version": "1.1.0", + "version": "2.0.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 65617f76..56d1a51e 100644 --- a/packages/http-server/CHANGELOG.md +++ b/packages/http-server/CHANGELOG.md @@ -1,5 +1,19 @@ # @tbdex/http-server +## 2.0.0 + +### Major Changes + +- [#263](https://github.com/TBD54566975/tbdex-js/pull/263) [`c673b00`](https://github.com/TBD54566975/tbdex-js/commit/c673b0015b4a4cb2a954aad5e6bf233d70a0dcec) Thanks [@thehenrytsai](https://github.com/thehenrytsai)! - Updated HTTP request body to contain `message` property according to spec change. + +- [#265](https://github.com/TBD54566975/tbdex-js/pull/265) [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040) Thanks [@leordev](https://github.com/leordev)! - Updated code and tests to align with latest tbDEX spec (commit 621f54f of `tbdex` repo) + +### Patch Changes + +- Updated dependencies [[`c673b00`](https://github.com/TBD54566975/tbdex-js/commit/c673b0015b4a4cb2a954aad5e6bf233d70a0dcec), [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040), [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040)]: + - @tbdex/protocol@2.0.0 + - @tbdex/http-client@2.0.0 + ## 1.1.0 ### Minor Changes diff --git a/packages/http-server/package.json b/packages/http-server/package.json index 674bb6f2..12a4cc27 100644 --- a/packages/http-server/package.json +++ b/packages/http-server/package.json @@ -9,7 +9,7 @@ }, "license": "Apache-2.0", "type": "module", - "version": "1.1.0", + "version": "2.0.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 7630a9bf..011d3573 100644 --- a/packages/protocol/CHANGELOG.md +++ b/packages/protocol/CHANGELOG.md @@ -1,5 +1,17 @@ # @tbdex/protocol +## 2.0.0 + +### Major Changes + +- [#263](https://github.com/TBD54566975/tbdex-js/pull/263) [`c673b00`](https://github.com/TBD54566975/tbdex-js/commit/c673b0015b4a4cb2a954aad5e6bf233d70a0dcec) Thanks [@thehenrytsai](https://github.com/thehenrytsai)! - Updated HTTP request body to contain `message` property according to spec change. + +- [#265](https://github.com/TBD54566975/tbdex-js/pull/265) [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040) Thanks [@leordev](https://github.com/leordev)! - Updated code and tests to align with latest tbDEX spec (commit 621f54f of `tbdex` repo) + +### Patch Changes + +- [#265](https://github.com/TBD54566975/tbdex-js/pull/265) [`e692ea2`](https://github.com/TBD54566975/tbdex-js/commit/e692ea209bd41df4173392f606c08ff1636e1040) Thanks [@leordev](https://github.com/leordev)! - Fix: use fragment in json schema refs. + ## 1.1.0 ### Patch Changes diff --git a/packages/protocol/package.json b/packages/protocol/package.json index ff894e0f..99b5003b 100644 --- a/packages/protocol/package.json +++ b/packages/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@tbdex/protocol", - "version": "1.1.0", + "version": "2.0.0", "type": "module", "description": "Library that includes type definitions for tbdex messages", "license": "Apache-2.0",