From ee25ed8b2ab2db08a5a4d57e1e86f33ce502dc40 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 Nov 2023 12:31:16 +0000 Subject: [PATCH] chore(release): 4.0.0-alpha.7 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [4.0.0-alpha.7](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v4.0.0-alpha.6...v4.0.0-alpha.7) (2023-11-08) ### Features * ๐ŸŽธ support NFTs in /assets endpoints where appropriate ([eb9ac00](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/eb9ac00e299bc223cdb9109f6e5910280e956379)) ### BREAKING CHANGES * ๐Ÿงจ InstructionModel leg "amount" is now optional. It will not be present when the leg is for an NFT โœ… Closes: DA-913 --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 96d079e1..d12ee15c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "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 c1e2a72d..89f1cbdd 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.6'); + .setVersion('4.0.0-alpha.7'); const configService = app.get(ConfigService);