Skip to content

Commit 6e0d488

Browse files
committed
Merge branch 'release/v0.13.15'
2 parents 8731d93 + 16e8353 commit 6e0d488

12 files changed

Lines changed: 9229 additions & 8685 deletions

File tree

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [[0.13.15]](https://github.com/thoth-pub/thoth/releases/tag/v0.13.15) - 2025-12-03
10+
### Changed
11+
- [#717](https://github.com/thoth-pub/thoth/pull/717) - Update Thema codes to v1.6
12+
913
## [[0.13.14]](https://github.com/thoth-pub/thoth/releases/tag/v0.13.14) - 2025-10-14
1014
### Changed
1115
- [708](https://github.com/thoth-pub/thoth/pull/708) - Replace ISBN parsing library with [`isbn`](https://crates.io/crates/isbn)

Cargo.lock

Lines changed: 8 additions & 9 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.13.14"
3+
version = "0.13.15"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -15,11 +15,11 @@ maintenance = { status = "actively-developed" }
1515
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]
1616

1717
[dependencies]
18-
thoth-api = { version = "=0.13.14", path = "thoth-api", features = ["backend"] }
19-
thoth-api-server = { version = "=0.13.14", path = "thoth-api-server" }
20-
thoth-app-server = { version = "=0.13.14", path = "thoth-app-server" }
21-
thoth-errors = { version = "=0.13.14", path = "thoth-errors" }
22-
thoth-export-server = { version = "=0.13.14", path = "thoth-export-server" }
18+
thoth-api = { version = "=0.13.15", path = "thoth-api", features = ["backend"] }
19+
thoth-api-server = { version = "=0.13.15", path = "thoth-api-server" }
20+
thoth-app-server = { version = "=0.13.15", path = "thoth-app-server" }
21+
thoth-errors = { version = "=0.13.15", path = "thoth-errors" }
22+
thoth-export-server = { version = "=0.13.15", path = "thoth-export-server" }
2323
clap = { version = "4.5.32", features = ["cargo", "env"] }
2424
dialoguer = { version = "0.11.0", features = ["password"] }
2525
dotenv = "0.15.0"

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.13.14"
3+
version = "0.13.15"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
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.13.14", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "=0.13.14", path = "../thoth-errors" }
12+
thoth-api = { version = "=0.13.15", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "=0.13.15", path = "../thoth-errors" }
1414
actix-web = "4.10"
1515
actix-cors = "0.7.1"
1616
actix-http = "3.10.0"

thoth-api/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api"
3-
version = "0.13.14"
3+
version = "0.13.15"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -25,7 +25,7 @@ backend = [
2525
]
2626

2727
[dependencies]
28-
thoth-errors = { version = "=0.13.14", path = "../thoth-errors" }
28+
thoth-errors = { version = "=0.13.15", path = "../thoth-errors" }
2929
actix-web = { version = "4.10", optional = true }
3030
argon2rs = { version = "0.2.5", optional = true }
3131
isbn = "0.6.0"
@@ -40,7 +40,6 @@ futures = { version = "0.3.31", optional = true }
4040
jsonwebtoken = { version = "9.3.1", optional = true }
4141
juniper = { version = "0.16.1", features = ["chrono", "schema-language", "uuid"] }
4242
lazy_static = "1.5.0"
43-
phf = { version = "0.11", features = ["macros"] }
4443
rand = { version = "0.9.0", optional = true }
4544
regex = "1.11.1"
4645
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)