Skip to content

Commit

Permalink
chore(release): 5.0.0-alpha.1 [skip ci]
Browse files Browse the repository at this point in the history
# [5.0.0-alpha.1](v4.1.0...v5.0.0-alpha.1) (2023-12-04)

### Bug Fixes

* 🐛 error when optional arg methods given no args ([d02482a](d02482a))

### Features

* 🎸 add endpoint to retrieve grouped instructions ([af80fd5](af80fd5))
* 🎸 add NFT module ([388a572](388a572))
* 🎸 allow registering CustomClaim ([e6cfb27](e6cfb27))
* 🎸 get all registered custom claims ([#221](#221)) ([574df13](574df13))
* 🎸 register and get customclaimtype ([d595e48](d595e48))
* 🎸 support NFTs in /assets endpoints where appropriate ([eb9ac00](eb9ac00))
* 🎸 update to [email protected] ([#214](#214)) ([e42143e](e42143e))

### BREAKING CHANGES

* 🧨 InstructionModel leg "amount" is now optional. It will not be present
when the leg is for an NFT

✅ Closes: DA-913
  • Loading branch information
semantic-release-bot committed Dec 4, 2023
1 parent c12626e commit bc34132
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polymesh-rest-api",
"version": "4.1.0",
"version": "5.0.0-alpha.1",
"description": "Provides a REST like interface for interacting with the Polymesh blockchain",
"author": "Polymesh Association",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async function bootstrap(): Promise<void> {
const options = new DocumentBuilder()
.setTitle(swaggerTitle)
.setDescription(swaggerDescription)
.setVersion('4.1.0');
.setVersion('5.0.0-alpha.1');

const configService = app.get<ConfigService>(ConfigService);

Expand Down

0 comments on commit bc34132

Please sign in to comment.