Skip to content

Commit a012467

Browse files
committed
Merge branch 'release/v0.8.10'
2 parents 6a151db + 3bad9d5 commit a012467

32 files changed

Lines changed: 609 additions & 76 deletions

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Changed
9+
- [#438](https://github.com/thoth-pub/thoth/issues/438) - Allow specifying query parameters based on the requested specification
10+
- Upgrade rust to `1.64.0` in development `Dockerfile`
811

912
## [[0.8.9]](https://github.com/thoth-pub/thoth/releases/tag/v0.8.9) - 2022-09-21
1013
### Added

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" }
1616
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]
1717

1818
[dependencies]
19-
thoth-api = { version = "0.8.9", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "0.8.9", path = "thoth-api-server" }
21-
thoth-app-server = { version = "0.8.9", path = "thoth-app-server" }
22-
thoth-errors = { version = "0.8.9", path = "thoth-errors" }
23-
thoth-export-server = { version = "0.8.9", path = "thoth-export-server" }
19+
thoth-api = { version = "0.8.10", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "0.8.10", path = "thoth-api-server" }
21+
thoth-app-server = { version = "0.8.10", path = "thoth-app-server" }
22+
thoth-errors = { version = "0.8.10", path = "thoth-errors" }
23+
thoth-export-server = { version = "0.8.10", path = "thoth-export-server" }
2424
clap = "2.33.3"
2525
dialoguer = "0.7.1"
2626
dotenv = "0.15.0"

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUST_VERSION=1.63.0
1+
ARG RUST_VERSION=1.64.0
22

33
FROM rust:${RUST_VERSION}
44

thoth-api-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api-server"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
99
readme = "README.md"
1010

1111
[dependencies]
12-
thoth-api = { version = "0.8.9", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "0.8.9", path = "../thoth-errors" }
12+
thoth-api = { version = "0.8.10", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "0.8.10", path = "../thoth-errors" }
1414
actix-web = "4.0.1"
1515
actix-cors = "0.6.0"
1616
actix-identity = "0.4.0"

thoth-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
1616
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"]
1717

1818
[dependencies]
19-
thoth-errors = { version = "0.8.9", path = "../thoth-errors" }
19+
thoth-errors = { version = "0.8.10", path = "../thoth-errors" }
2020
actix-web = { version = "4.0.1", optional = true }
2121
argon2rs = "0.2.5"
2222
isbn2 = "0.4.0"

thoth-app-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app-server"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"

thoth-app/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app"
3-
version = "0.8.9"
3+
version = "0.8.10"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -38,5 +38,5 @@ serde = { version = "1.0.115", features = ["derive"] }
3838
serde_json = "1.0"
3939
url = "2.1.1"
4040
uuid = { version = "0.7", features = ["serde", "v4"] }
41-
thoth-api = { version = "0.8.9", path = "../thoth-api" }
42-
thoth-errors = { version = "0.8.9", path = "../thoth-errors" }
41+
thoth-api = { version = "0.8.10", path = "../thoth-api" }
42+
thoth-errors = { version = "0.8.10", path = "../thoth-errors" }

thoth-app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start_url": "/?homescreen=1",
1010
"background_color": "#ffffff",
1111
"theme_color": "#ffdd57",
12-
"version": "0.8.9",
12+
"version": "0.8.10",
1313
"icons": [
1414
{
1515
"src": "\/android-icon-36x36.png",

thoth-app/src/component/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(clippy::let_unit_value)]
2+
13
#[macro_export]
24
macro_rules! pagination_helpers {
35
($component:ident, $pagination_text:ident, $search_text:ident) => {

0 commit comments

Comments
 (0)