Skip to content

Commit eea2282

Browse files
committed
Merge branch 'release/v0.12.5'
2 parents 3a28358 + 3de5939 commit eea2282

20 files changed

Lines changed: 79 additions & 69 deletions

File tree

.github/workflows/build_test_and_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v4
3636
- name: Build binary
37-
run: cargo build --verbose
37+
run: cargo build -vv
3838
test:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v4
4242
- name: Run tests
43-
run: cargo test --workspace --verbose
43+
run: cargo test --workspace -vv
4444
lint:
4545
runs-on: ubuntu-latest
4646
steps:

.github/workflows/run_migrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Build binary
45-
run: cargo build --verbose
45+
run: cargo build -vv
4646
- name: Run migrations
4747
run: cargo run migrate
4848
- name: Revert migrations

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [[0.12.5]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.5) - 2024-05-07
10+
### Changed
11+
- [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade rust to `1.78.0` in production and development `Dockerfile`
12+
- [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade `trunk` to v0.20.0
13+
- [601](https://github.com/thoth-pub/thoth/pull/601) - Added `-vv` option to build command in Makefile and GitHub actions
14+
915
## [[0.12.4]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.4) - 2024-04-30
1016
### Changed
1117
- [545](https://github.com/thoth-pub/thoth/issues/545) - Add Zenodo as a location platform

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.12.4"
3+
version = "0.12.5"
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.4", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "=0.12.4", path = "thoth-api-server" }
21-
thoth-app-server = { version = "=0.12.4", path = "thoth-app-server" }
22-
thoth-errors = { version = "=0.12.4", path = "thoth-errors" }
23-
thoth-export-server = { version = "=0.12.4", path = "thoth-export-server" }
19+
thoth-api = { version = "=0.12.5", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "=0.12.5", path = "thoth-api-server" }
21+
thoth-app-server = { version = "=0.12.5", path = "thoth-app-server" }
22+
thoth-errors = { version = "=0.12.5", path = "thoth-errors" }
23+
thoth-export-server = { version = "=0.12.5", 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.77.2-stable
1+
ARG MUSL_IMAGE=clux/muslrust:1.78.0-stable
22

33
FROM ${MUSL_IMAGE} as build
44

Dockerfile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG RUST_VERSION=1.77.2
1+
ARG RUST_VERSION=1.78.0
22

33
FROM rust:${RUST_VERSION}
44

5-
ENV TRUNK_VERSION=0.18.8
5+
ENV TRUNK_VERSION=0.20.0
66

77
ARG THOTH_GRAPHQL_API=http://localhost:8000
88
ARG THOTH_EXPORT_API=http://localhost:8181

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ docker-dev-db:
4545
docker-compose -f docker-compose.dev.yml up db
4646

4747
build:
48-
cargo build
48+
cargo build -vv
4949

5050
build-graphql-api: build
5151

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.4"
3+
version = "0.12.5"
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.4", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "=0.12.4", path = "../thoth-errors" }
12+
thoth-api = { version = "=0.12.5", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "=0.12.5", path = "../thoth-errors" }
1414
actix-web = "4.5.1"
1515
actix-cors = "0.7.0"
1616
actix-identity = "0.7.1"

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.12.4"
3+
version = "0.12.5"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
1616
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken"]
1717

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

0 commit comments

Comments
 (0)