Skip to content

Commit 03b4ba9

Browse files
committed
chore(release): 5.0.0 [skip ci]
# [5.0.0](v4.1.0...v5.0.0) (2024-04-04) ### Bug Fixes * 🐛 error when optional arg methods given no args ([d02482a](d02482a)) * 🐛 is-pre-approved doc comments ([601e1a6](601e1a6)) * 🐛 offline tx hash was not being recorded ([ca57ec1](ca57ec1)) * 🐛 typo in ga workflow config ([8772341](8772341)) ### Features * 🎸 add `options` field for tx details, like signer ([b16ded4](b16ded4)) * 🎸 add `options` field for tx details, like signer ([cc48878](cc48878)) * 🎸 add `options` field for tx details, like signer ([fb6bd8e](fb6bd8e)) * 🎸 add address and nonce to tx model ([f79620d](f79620d)) * 🎸 add basic amqp flow ([d6d1444](d6d1444)) * 🎸 add custom release bot configuration to sign commits ([d7b49e8](d7b49e8)) * 🎸 add endpoint to retrieve grouped instructions ([af80fd5](af80fd5)) * 🎸 add instruction mediator endpoints ([2f2f294](2f2f294)) * 🎸 add manual ci trigger ([077a3e2](077a3e2)) * 🎸 add NFT module ([388a572](388a572)) * 🎸 add nonce and mortality tx options ([80781a2](80781a2)) * 🎸 add offline process mode ([3f4f135](3f4f135)) * 🎸 add pre-approval endpoints ([56af7b7](56af7b7)) * 🎸 Adds new Asset Metadata endpoints ([a53e9f3](a53e9f3)) * 🎸 Adds new Asset Metadata endpoints ([f064ce2](f064ce2)) * 🎸 allow registering CustomClaim ([e6cfb27](e6cfb27)) * 🎸 config artemis MQ explictly ([18081fd](18081fd)) * 🎸 get all registered custom claims ([#221](#221)) ([574df13](574df13)) * 🎸 handle when artemis is unconfigured ([d17e1f4](d17e1f4)) * 🎸 identities rotatePrimaryKey/attestPrimaryKeyRotation ([#251](#251)) ([8ffb1ab](8ffb1ab)) * 🎸 introduce `processMode` option to replace many bools ([e3d0ac8](e3d0ac8)) * 🎸 introduce `processMode` option to replace many bools ([e507fc3](e507fc3)) * 🎸 introduce `processMode` option to replace many bools ([fe283c5](fe283c5)) * 🎸 log errors on amqp connection errors ([d3fb5e7](d3fb5e7)) * 🎸 register and get customclaimtype ([d595e48](d595e48)) * 🎸 remove usage of testUtils ([57e64a1](57e64a1)) * 🎸 set autoaccept to false ([96e3ee2](96e3ee2)) * 🎸 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
1 parent aefd26f commit 03b4ba9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "polymesh-rest-api",
3-
"version": "5.0.0-alpha.2",
3+
"version": "5.0.0",
44
"description": "Provides a REST like interface for interacting with the Polymesh blockchain",
55
"author": "Polymesh Association",
66
"private": true,

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async function bootstrap(): Promise<void> {
4747
const options = new DocumentBuilder()
4848
.setTitle(swaggerTitle)
4949
.setDescription(swaggerDescription)
50-
.setVersion('5.0.0-alpha.2');
50+
.setVersion('5.0.0');
5151

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

0 commit comments

Comments
 (0)