Skip to content

Commit 4b4a6fe

Browse files
committed
Bump v0.13.2
1 parent e2e1603 commit 4b4a6fe

File tree

9 files changed

+32
-32
lines changed

9 files changed

+32
-32
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "0.13.1"
3+
version = "0.13.2"
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.1", path = "thoth-api", features = ["backend"] }
19-
thoth-api-server = { version = "=0.13.1", path = "thoth-api-server" }
20-
thoth-app-server = { version = "=0.13.1", path = "thoth-app-server" }
21-
thoth-errors = { version = "=0.13.1", path = "thoth-errors" }
22-
thoth-export-server = { version = "=0.13.1", path = "thoth-export-server" }
18+
thoth-api = { version = "=0.13.2", path = "thoth-api", features = ["backend"] }
19+
thoth-api-server = { version = "=0.13.2", path = "thoth-api-server" }
20+
thoth-app-server = { version = "=0.13.2", path = "thoth-app-server" }
21+
thoth-errors = { version = "=0.13.2", path = "thoth-errors" }
22+
thoth-export-server = { version = "=0.13.2", path = "thoth-export-server" }
2323
clap = { version = "4.5.16", features = ["cargo", "env"] }
2424
dialoguer = { version = "0.11.0", features = ["password"] }
2525
dotenv = "0.15.0"

thoth-api-server/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api-server"
3-
version = "0.13.1"
3+
version = "0.13.2"
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.1", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "=0.13.1", path = "../thoth-errors" }
12+
thoth-api = { version = "=0.13.2", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "=0.13.2", path = "../thoth-errors" }
1414
actix-web = "4.9"
1515
actix-cors = "0.7.0"
1616
actix-http = "3.9.0"

thoth-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }
1515
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken", "deadpool-redis"]
1616

1717
[dependencies]
18-
thoth-errors = { version = "=0.13.1", path = "../thoth-errors" }
18+
thoth-errors = { version = "=0.13.2", path = "../thoth-errors" }
1919
actix-web = { version = "4.8", optional = true }
2020
argon2rs = "0.2.5"
2121
isbn2 = "0.4.0"

thoth-app-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app-server"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"

thoth-app/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -35,8 +35,8 @@ uuid = { version = "1.10.0", features = ["serde", "v4"] }
3535
# `getrandom` is a dependency of `uuid`, we need to explicitly import and include the `js` feature to enable wasm
3636
# https://docs.rs/getrandom/latest/getrandom/#webassembly-support
3737
getrandom = { version = "0.2", features = ["js"] }
38-
thoth-api = { version = "=0.13.1", path = "../thoth-api" }
39-
thoth-errors = { version = "=0.13.1", path = "../thoth-errors" }
38+
thoth-api = { version = "=0.13.2", path = "../thoth-api" }
39+
thoth-errors = { version = "=0.13.2", path = "../thoth-errors" }
4040

4141
[build-dependencies]
4242
dotenv = "0.15.0"

thoth-client/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-client"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = {version = "=0.13.1", path = "../thoth-api" }
14-
thoth-errors = {version = "=0.13.1", path = "../thoth-errors" }
13+
thoth-api = {version = "=0.13.2", path = "../thoth-api" }
14+
thoth-errors = {version = "=0.13.2", path = "../thoth-errors" }
1515
graphql_client = "0.14.0"
1616
chrono = { version = "0.4.38", features = ["serde"] }
1717
reqwest = { version = "0.12", features = ["json"] }
@@ -22,4 +22,4 @@ serde_json = "1.0"
2222
uuid = { version = "1.10.0", features = ["serde"] }
2323

2424
[build-dependencies]
25-
thoth-api = { version = "=0.13.1", path = "../thoth-api", features = ["backend"] }
25+
thoth-api = { version = "=0.13.2", path = "../thoth-api", features = ["backend"] }

thoth-errors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-errors"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"

thoth-export-server/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-export-server"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,9 +10,9 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = { version = "=0.13.1", path = "../thoth-api" }
14-
thoth-errors = { version = "=0.13.1", path = "../thoth-errors" }
15-
thoth-client = { version = "=0.13.1", path = "../thoth-client" }
13+
thoth-api = { version = "=0.13.2", path = "../thoth-api" }
14+
thoth-errors = { version = "=0.13.2", path = "../thoth-errors" }
15+
thoth-client = { version = "=0.13.2", path = "../thoth-client" }
1616
actix-web = "4.9"
1717
actix-cors = "0.7.0"
1818
cc_license = "0.1.0"

0 commit comments

Comments
 (0)