Skip to content

Commit

Permalink
Merge branch 'release/v0.12.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Apr 16, 2024
2 parents 7d10b34 + 0f0a410 commit f4e848a
Show file tree
Hide file tree
Showing 78 changed files with 831 additions and 355 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[0.12.2]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.2) - 2024-04-16
### Added
- [581](https://github.com/thoth-pub/thoth/issues/581) - Add crossmark policy DOI to imprint record

### Changed
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade rust to `1.77.2` in production and development `Dockerfile`
- [591](https://github.com/thoth-pub/thoth/pull/591) - Added favicons to export API and GraphQL API docs
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replaced static logo files with CDN paths
- [591](https://github.com/thoth-pub/thoth/pull/591) - Moved thoth CSS to root directory in thoth-app
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replace unnecessary pageloader CSS with an actual loader
- [591](https://github.com/thoth-pub/thoth/pull/591) - Apply Thoth theming to rapidocs
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `graphiql` to v3.2
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `trunk` to v0.19.2
- [591](https://github.com/thoth-pub/thoth/pull/591) - Upgrade `wasm-bindgen` to v0.2.92

### Fixed
- [591](https://github.com/thoth-pub/thoth/pull/591) - Replaced broken logo URL in export API docs

## [[0.12.1]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.1) - 2024-04-8
### Fixed
- [589](https://github.com/thoth-pub/thoth/issues/589) - Truncation of `short_abstract` in Thoth ONIX results in Invalid UTF-8 sequences
Expand Down
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth"
version = "0.12.1"
version = "0.12.2"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" }
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]

[dependencies]
thoth-api = { version = "=0.12.1", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "=0.12.1", path = "thoth-api-server" }
thoth-app-server = { version = "=0.12.1", path = "thoth-app-server" }
thoth-errors = { version = "=0.12.1", path = "thoth-errors" }
thoth-export-server = { version = "=0.12.1", path = "thoth-export-server" }
thoth-api = { version = "0.12.2", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "0.12.2", path = "thoth-api-server" }
thoth-app-server = { version = "0.12.2", path = "thoth-app-server" }
thoth-errors = { version = "0.12.2", path = "thoth-errors" }
thoth-export-server = { version = "0.12.2", path = "thoth-export-server" }
clap = { version = "4.4.7", features = ["cargo", "env"] }
dialoguer = { version = "0.11.0", features = ["password"] }
dotenv = "0.15.0"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG MUSL_IMAGE=clux/muslrust:1.76.0
ARG MUSL_IMAGE=clux/muslrust:1.77.2-stable

FROM ${MUSL_IMAGE} as build

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG RUST_VERSION=1.76.0
ARG RUST_VERSION=1.77.2

FROM rust:${RUST_VERSION}

Expand Down
6 changes: 3 additions & 3 deletions thoth-api-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-api-server"
version = "0.12.1"
version = "0.12.2"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"

[dependencies]
thoth-api = { version = "0.12.1", path = "../thoth-api", features = ["backend"] }
thoth-errors = { version = "0.12.1", path = "../thoth-errors" }
thoth-api = { version = "0.12.2", path = "../thoth-api", features = ["backend"] }
thoth-errors = { version = "0.12.2", path = "../thoth-errors" }
actix-web = "4.5.1"
actix-cors = "0.7.0"
actix-identity = "0.7.1"
Expand Down
Loading

0 comments on commit f4e848a

Please sign in to comment.