From 7be6af76492684fd677d3d84ccd826578d46d06a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 18 Sep 2023 14:07:53 +0000 Subject: [PATCH] chore(release): 4.0.0-alpha.4 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [4.0.0-alpha.4](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v4.0.0-alpha.3...v4.0.0-alpha.4) (2023-09-18) ### Features * 🎸 add endpoint to retrieve grouped instructions ([af80fd5](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/af80fd5fac9821714cabdf5dafa218f792cac15f)) --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2027bf30..aa396928 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-alpha.4", "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..11f00a6a 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-alpha.4'); const configService = app.get(ConfigService);