From d232d76833f37b2baf053da626611354d3457b06 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 14 Mar 2023 08:48:34 +0000 Subject: [PATCH] chore(release): 2.5.0-alpha.3.15 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [2.5.0-alpha.3.15](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v2.5.0-alpha.3.14...v2.5.0-alpha.3.15) (2023-03-14) ### Bug Fixes * 🐛 default for developer utils env variable ([2308191](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/23081919f377505e4efa39f4447be1ca65850927)) * 🐛 Ignore release commit from commitlint ([3cb2216](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/3cb22160e23444db985dfd5043645ed6e7c07dd7)) * 🐛 Update commitlint ignore regex to suppport prereleases ([87b2d9f](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/87b2d9f3464bb516a1c33e680e581ee3e5259ffc)) ### Features * 🎸 Export swagger json in release assets ([0412270](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/0412270977b9407b71e7a2ad4b3eb5363f0ebd6b)) --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6e373490..ce4b8cc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "0.0.1", + "version": "2.5.0-alpha.3.15", "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 9543b209..5f75a478 100644 --- a/src/main.ts +++ b/src/main.ts @@ -39,7 +39,7 @@ async function bootstrap(): Promise { const options = new DocumentBuilder() .setTitle('Polymesh REST API') .setDescription('RESTful access to the Polymesh blockchain') - .setVersion('1.0'); + .setVersion('2.5.0-alpha.3.15'); const configService = app.get(ConfigService);