From a8c7643d000698dd78a5e5c30c327734c56c8306 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 28 Aug 2023 12:27:59 +0000 Subject: [PATCH] chore(release): 4.0.0-alpha.1 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [4.0.0-alpha.1](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v3.1.0...v4.0.0-alpha.1) (2023-08-28) ### 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)) ### 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)) * ๐ŸŽธ 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 * ๐Ÿงจ Checkpoint Schedules specify dates explictly, reschedule instruction removed - use executeManually instead, InvestorUniquness claim types removed --- package.json | 4 ++-- src/main.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index fc0d9b1c..abe4ac76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "3.1.0", + "version": "4.0.0-alpha.1", "description": "Provides a REST like interface for interacting with the Polymesh blockchain", "author": "Polymesh Association", "private": true, @@ -44,7 +44,7 @@ "@nestjs/schedule": "^2.2.0", "@nestjs/swagger": "^6.2.1", "@nestjs/typeorm": "^9.0.1", - "@polymeshassociation/fireblocks-signing-manager": "^2.2.0", + "@polymeshassociation/fireblocks-signing-manager": "^2.2.0", "@polymeshassociation/hashicorp-vault-signing-manager": "^2.1.0", "@polymeshassociation/local-signing-manager": "^2.1.0", "@polymeshassociation/polymesh-sdk": "22.0.0-alpha.3", diff --git a/src/main.ts b/src/main.ts index 42ee8c61..2d7591bf 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('3.1.0'); + .setVersion('4.0.0-alpha.1'); const configService = app.get(ConfigService);