From f4ee443dd46859f8251b8a5ace306c23a058b795 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 29 Aug 2023 21:30:17 +0000 Subject: [PATCH] chore(release): 4.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [4.0.0](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v3.1.0...v4.0.0) (2023-08-29) ### Bug Fixes * ๐Ÿ› bump sdk version for 5.4 asset fix ([a269b29](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/a269b2923ae05f328903f885cffac464b1c49792)) * ๐Ÿ› finding default portfolio when id 0 is given ([#197](https://github.com/PolymeshAssociation/polymesh-rest-api/issues/197)) ([a8dfae5](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/a8dfae5ed204ea44d3d3f8ad3d1947a2143934b3)) * ๐Ÿ› include latest sdk bug fix ([1dd25aa](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/1dd25aa42c02b75b8933141f141d5efdcbb89cd4)) ### Features * ๐ŸŽธ add sdk dual 5.4-6.0 version for smooth upgrade ([55c9e4d](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/55c9e4d718fbc0654200762ddfedfc191d7fb413)) * ๐ŸŽธ register identity ([3c86517](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/3c865176217e04fb34baa1b095630548d1da987d)) * ๐ŸŽธ update to 6.0 ([fcffc4b](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/fcffc4b860dce489eb04b2969199601ad9e4d34b)) * ๐ŸŽธ update to sdk v22-beta.1 ([786c557](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/786c55794177db9fd494fb7534a9993307fb61ba)) * ๐ŸŽธ upgrade sdk to 22.alpha-2 ([09d4011](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/09d401189bcca667ff0bf3a5e3ff1265181174a0)) * ๐ŸŽธ use sdk v22.alpha-3 ([4bfacdb](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/4bfacdbfa275711ed979616a08fff44c6656c4c4)) ### BREAKING CHANGES * ๐Ÿงจ TransactionHistoryFilersDto removes `order` and `field` params, replaced by `orderBy` field. Affects `GET /accounts/{account}/transactions` * ๐Ÿงจ Checkpoint Schedules specify dates explictly, reschedule instruction removed - use executeManually instead, InvestorUniquness claim types removed --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2027bf30..656b0917 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "4.0.0-alpha.3", + "version": "4.0.0", "description": "Provides a REST like interface for interacting with the Polymesh blockchain", "author": "Polymesh Association", "private": true, diff --git a/src/main.ts b/src/main.ts index ddbf8194..f272361a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -47,7 +47,7 @@ async function bootstrap(): Promise { const options = new DocumentBuilder() .setTitle(swaggerTitle) .setDescription(swaggerDescription) - .setVersion('4.0.0-alpha.3'); + .setVersion('4.0.0'); const configService = app.get(ConfigService);