Skip to content

Commit f4e848a

Browse files
committed
Merge branch 'release/v0.12.2'
2 parents 7d10b34 + 0f0a410 commit f4e848a

78 files changed

Lines changed: 831 additions & 355 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [[0.12.2]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.2) - 2024-04-16
10+
### Added
11+
- [581](https://github.com/thoth-pub/thoth/issues/581) - Add crossmark policy DOI to imprint record
12+
13+
### Changed
14+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade rust to `1.77.2` in production and development `Dockerfile`
15+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Added favicons to export API and GraphQL API docs
16+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replaced static logo files with CDN paths
17+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Moved thoth CSS to root directory in thoth-app
18+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replace unnecessary pageloader CSS with an actual loader
19+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Apply Thoth theming to rapidocs
20+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `graphiql` to v3.2
21+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `trunk` to v0.19.2
22+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `wasm-bindgen` to v0.2.92
23+
24+
### Fixed
25+
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replaced broken logo URL in export API docs
26+
927
## [[0.12.1]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.1) - 2024-04-8
1028
### Fixed
1129
- [589](https://github.com/thoth-pub/thoth/issues/589) - Truncation of `short_abstract` in Thoth ONIX results in Invalid UTF-8 sequences

Cargo.lock

Lines changed: 18 additions & 18 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.12.1"
3+
version = "0.12.2"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
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.12.1", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "=0.12.1", path = "thoth-api-server" }
21-
thoth-app-server = { version = "=0.12.1", path = "thoth-app-server" }
22-
thoth-errors = { version = "=0.12.1", path = "thoth-errors" }
23-
thoth-export-server = { version = "=0.12.1", path = "thoth-export-server" }
19+
thoth-api = { version = "0.12.2", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "0.12.2", path = "thoth-api-server" }
21+
thoth-app-server = { version = "0.12.2", path = "thoth-app-server" }
22+
thoth-errors = { version = "0.12.2", path = "thoth-errors" }
23+
thoth-export-server = { version = "0.12.2", path = "thoth-export-server" }
2424
clap = { version = "4.4.7", features = ["cargo", "env"] }
2525
dialoguer = { version = "0.11.0", features = ["password"] }
2626
dotenv = "0.15.0"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MUSL_IMAGE=clux/muslrust:1.76.0
1+
ARG MUSL_IMAGE=clux/muslrust:1.77.2-stable
22

33
FROM ${MUSL_IMAGE} as build
44

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.76.0
1+
ARG RUST_VERSION=1.77.2
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.12.1"
3+
version = "0.12.2"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
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.12.1", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "0.12.1", path = "../thoth-errors" }
12+
thoth-api = { version = "0.12.2", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "0.12.2", path = "../thoth-errors" }
1414
actix-web = "4.5.1"
1515
actix-cors = "0.7.0"
1616
actix-identity = "0.7.1"

0 commit comments

Comments
 (0)