From a482452a3a4145e57f828070bbf9ba6ab9325c3c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 28 Aug 2023 13:16:06 +0000 Subject: [PATCH] chore(release): 4.0.0-alpha.2 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # [4.0.0-alpha.2](https://github.com/PolymeshAssociation/polymesh-rest-api/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2023-08-28) ### Features * 🎸 update to sdk v22-beta.1 ([786c557](https://github.com/PolymeshAssociation/polymesh-rest-api/commit/786c55794177db9fd494fb7534a9993307fb61ba)) ### BREAKING CHANGES * 🧨 TransactionHistoryFilersDto removes `order` and `field` params, replaced by `orderBy` field. Affects `GET /accounts/{account}/transactions` --- package.json | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 43666a99..8e9af05d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polymesh-rest-api", - "version": "4.0.0-alpha.1", + "version": "4.0.0-alpha.2", "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 2d7591bf..8d57b1a6 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.1'); + .setVersion('4.0.0-alpha.2'); const configService = app.get(ConfigService);