From da4d3f052ef78814ae7424a2e8da04ce5ab053b1 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 25 Mar 2024 16:02:35 +0000 Subject: [PATCH] chore(release): 5.0.0-alpha.13 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [5.0.0-alpha.13](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v5.0.0-alpha.12...v5.0.0-alpha.13) (2024-03-25) ### Bug Fixes * 🐛 is-pre-approved doc comments ([67ef341](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/67ef341f095f9d9a6af72c6f98ee579e51ee2c03)) --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f0d8153a..60551b39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "5.0.0-alpha.12", + "version": "5.0.0-alpha.13", "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 d65a10a3..1675ddfa 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.12'); + .setVersion('5.0.0-alpha.13'); const configService = app.get(ConfigService);