Skip to content

Commit

Permalink
chore(release): 1.0.0-alpha.7 [skip ci]
Browse files Browse the repository at this point in the history
# [1.0.0-alpha.7](v1.0.0-alpha.6...v1.0.0-alpha.7) (2024-05-03)

### Features

* 🎸 upgrade auditor verify to work when key is receiver ([91844c9](91844c9))

### BREAKING CHANGES

* 🧨 POST /confidential-transactions/:id/auditor-verify is now POST
/confidential-transactions/:id/verify-amounts. Request payload has
renamed param from `auditorKey` to `publicKey`

✅ Closes: DA-1143
  • Loading branch information
polymesh-bot committed May 3, 2024
1 parent 91844c9 commit 2009eca
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-private-rest-api",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"description": "Provides a REST like interface for interacting with the Polymesh Private 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 @@ -49,7 +49,7 @@ async function bootstrap(): Promise<void> {
const options = new DocumentBuilder()
.setTitle(swaggerTitle)
.setDescription(swaggerDescription)
.setVersion('1.0.0-alpha.6');
.setVersion('1.0.0-alpha.7');

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

Expand Down

0 comments on commit 2009eca

Please sign in to comment.