From 66a24bd60507829a5e9875dad68f8ff039bc1fa4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 18 Jan 2024 14:46:46 +0000 Subject: [PATCH] chore(release): 5.0.0-alpha.7 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [5.0.0-alpha.7](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v5.0.0-alpha.6...v5.0.0-alpha.7) (2024-01-18) ### Features * 🎸 handle when artemis is unconfigured ([13f9bd7](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/13f9bd7681b0d48b903f9526ef83b4f96e8cc8db)) --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6dfb2715..c2507777 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "5.0.0-alpha.6", + "version": "5.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 e7a5a4a3..8c0d8bc4 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('5.0.0-alpha.6'); + .setVersion('5.0.0-alpha.7'); const configService = app.get(ConfigService);