From c9e20e01c3342960e30eaef6a0cd5057dcc4035c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 20 Feb 2024 17:22:56 +0000 Subject: [PATCH] chore(release): 5.0.0-alpha.9 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [5.0.0-alpha.9](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v5.0.0-alpha.8...v5.0.0-alpha.9) (2024-02-20) ### Features * 🎸 add instruction mediator endpoints ([7f4e7e9](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/7f4e7e935483e35ce38cd531fb14acc505b02f7e)) --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f08ce303..f69235c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "5.0.0-alpha.8", + "version": "5.0.0-alpha.9", "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 80e23732..69573998 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.8'); + .setVersion('5.0.0-alpha.9'); const configService = app.get(ConfigService);