chore(release): 0.68.0 [skip ci]

# [0.68.0](https://github.com/gotson/komga/compare/v0.67.1...v0.68.0) (2021-01-11)

### Features

* **webui:** display book aggregated data on series screen ([e642174](e642174c84)), closes [#181](https://github.com/gotson/komga/issues/181)
* aggregate book information at series level ([eb029d9](eb029d9bb5))
This commit is contained in:
semantic-release-bot 2021-01-11 09:36:50 +00:00
parent e642174c84
commit ecb6f2014f
3 changed files with 65 additions and 17 deletions

View File

@ -1,3 +1,11 @@
# [0.68.0](https://github.com/gotson/komga/compare/v0.67.1...v0.68.0) (2021-01-11)
### Features
* **webui:** display book aggregated data on series screen ([e642174](https://github.com/gotson/komga/commit/e642174c8450fa9e6f6707e59f1c3830e283a47f)), closes [#181](https://github.com/gotson/komga/issues/181)
* aggregate book information at series level ([eb029d9](https://github.com/gotson/komga/commit/eb029d9bb5506775fac03a5fd2eca93d32678f57))
## [0.67.1](https://github.com/gotson/komga/compare/v0.67.0...v0.67.1) (2021-01-09)

View File

@ -1 +1 @@
version=0.67.1
version=0.68.0

View File

@ -1227,6 +1227,7 @@
"required": [
"booksCount",
"booksInProgressCount",
"booksMetadata",
"booksReadCount",
"booksUnreadCount",
"created",
@ -1242,11 +1243,28 @@
"metadata": {
"$ref": "#/components/schemas/SeriesMetadataDto"
},
"fileLastModified": {
"created": {
"format": "date-time",
"type": "string"
},
"created": {
"libraryId": {
"type": "string"
},
"booksMetadata": {
"$ref": "#/components/schemas/BookMetadataAggregationDto"
},
"booksCount": {
"format": "int32",
"type": "integer"
},
"url": {
"type": "string"
},
"booksInProgressCount": {
"format": "int32",
"type": "integer"
},
"fileLastModified": {
"format": "date-time",
"type": "string"
},
@ -1254,9 +1272,6 @@
"format": "int32",
"type": "integer"
},
"libraryId": {
"type": "string"
},
"name": {
"type": "string"
},
@ -1267,20 +1282,9 @@
"format": "date-time",
"type": "string"
},
"booksCount": {
"format": "int32",
"type": "integer"
},
"url": {
"type": "string"
},
"booksUnreadCount": {
"format": "int32",
"type": "integer"
},
"booksInProgressCount": {
"format": "int32",
"type": "integer"
}
}
},
@ -1406,6 +1410,42 @@
}
}
},
"BookMetadataAggregationDto": {
"type": "object",
"required": [
"authors",
"created",
"lastModified",
"summary",
"summaryNumber"
],
"properties": {
"summary": {
"type": "string"
},
"releaseDate": {
"format": "date",
"type": "string"
},
"created": {
"format": "date-time",
"type": "string"
},
"summaryNumber": {
"type": "string"
},
"lastModified": {
"format": "date-time",
"type": "string"
},
"authors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthorDto"
}
}
}
},
"RolesUpdateDto": {
"type": "object",
"required": [