Skip to content

Commit

Permalink
chore(release): 0.58.1 [skip ci]
Browse files Browse the repository at this point in the history
## [0.58.1](gotson/komga@v0.58.0...v0.58.1) (2020-08-24)

### Bug Fixes

* database migration failure ([2ca6077](gotson@2ca6077))
  • Loading branch information
semantic-release-bot committed Aug 24, 2020
1 parent 2ca6077 commit 1347930
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 26 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.58.1](https://github.com/gotson/komga/compare/v0.58.0...v0.58.1) (2020-08-24)


### Bug Fixes

* database migration failure ([2ca6077](https://github.com/gotson/komga/commit/2ca607708e21513fdf00f43b05b840dba0e07560))

# [0.58.0](https://github.com/gotson/komga/compare/v0.57.0...v0.58.0) (2020-08-24)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.58.0
version=0.58.1
50 changes: 25 additions & 25 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3883,19 +3883,22 @@
]
}
},
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
}
},
"parameters": [
Expand All @@ -3913,22 +3916,19 @@
]
}
},
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
}
},
"parameters": [
Expand Down

0 comments on commit 1347930

Please sign in to comment.