Skip to content

Commit 36ef73e

Browse files
committed
Merge #458: Release Version 3.0.0-alpha.11
4369cca release: version 3.0.0-alpha.11 (Cameron Garnham) ec88803 develop: bump to version 3.0.0-alpha.11-develop (Cameron Garnham) Pull request description: ACKs for top commit: da2ce7: ACK 4369cca Tree-SHA512: 8c15220be331fb3efac3db9a44a6a634b428873bdd06b7384d87d7081c35eb42007603b16ecd22aa54bc2267bf26c325906de9e4da6d4596173fa1d79bc0c9dc
2 parents a14b6b1 + 4369cca commit 36ef73e

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

Cargo.lock

+6-6
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
@@ -26,7 +26,7 @@ license-file = "COPYRIGHT"
2626
publish = true
2727
repository = "https://github.com/torrust/torrust-tracker"
2828
rust-version = "1.72"
29-
version = "3.0.0-alpha.10"
29+
version = "3.0.0-alpha.11"
3030

3131
[dependencies]
3232
aquatic_udp_protocol = "0.8"
@@ -56,10 +56,10 @@ serde_json = "1.0"
5656
serde_with = "3.2"
5757
thiserror = "1.0"
5858
tokio = { version = "1.29", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
59-
torrust-tracker-configuration = { version = "3.0.0-alpha.10", path = "packages/configuration" }
60-
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.10", path = "contrib/bencode" }
61-
torrust-tracker-located-error = { version = "3.0.0-alpha.10", path = "packages/located-error" }
62-
torrust-tracker-primitives = { version = "3.0.0-alpha.10", path = "packages/primitives" }
59+
torrust-tracker-configuration = { version = "3.0.0-alpha.11", path = "packages/configuration" }
60+
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.11", path = "contrib/bencode" }
61+
torrust-tracker-located-error = { version = "3.0.0-alpha.11", path = "packages/located-error" }
62+
torrust-tracker-primitives = { version = "3.0.0-alpha.11", path = "packages/primitives" }
6363
tower-http = { version = "0.4", features = ["compression-full"] }
6464
uuid = { version = "1", features = ["v4"] }
6565

@@ -70,7 +70,7 @@ reqwest = { version = "0.11.18", features = ["json"] }
7070
serde_bytes = "0.11"
7171
serde_repr = "0.1"
7272
serde_urlencoded = "0.7"
73-
torrust-tracker-test-helpers = { version = "3.0.0-alpha.10", path = "packages/test-helpers" }
73+
torrust-tracker-test-helpers = { version = "3.0.0-alpha.11", path = "packages/test-helpers" }
7474

7575
[workspace]
7676
members = ["contrib/bencode", "packages/configuration", "packages/located-error", "packages/primitives", "packages/test-helpers"]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ This project was a joint effort by [Nautilus Cyberneering GmbH][nautilus] and [D
179179

180180
[containers.md]: ./docs/containers.md
181181

182-
[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.10/torrust_tracker/servers/apis/v1
183-
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.10/torrust_tracker/servers/http
184-
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.10/torrust_tracker/servers/udp
182+
[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.11/torrust_tracker/servers/apis/v1
183+
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.11/torrust_tracker/servers/http
184+
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.11/torrust_tracker/servers/udp
185185

186186
[good first issues]: https://github.com/torrust/torrust-tracker/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
187187
[documentation]: https://docs.rs/torrust-tracker/
188-
[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.10/torrust_tracker/servers/apis/v1
188+
[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.11/torrust_tracker/servers/apis/v1
189189
[discussions]: https://github.com/torrust/torrust-tracker/discussions
190190

191191
[COPYRIGHT]: ./COPYRIGHT

packages/configuration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ serde = { version = "1.0", features = ["derive"] }
2121
serde_with = "3.2"
2222
thiserror = "1.0"
2323
toml = "0.8"
24-
torrust-tracker-located-error = { version = "3.0.0-alpha.10", path = "../located-error" }
25-
torrust-tracker-primitives = { version = "3.0.0-alpha.10", path = "../primitives" }
24+
torrust-tracker-located-error = { version = "3.0.0-alpha.11", path = "../located-error" }
25+
torrust-tracker-primitives = { version = "3.0.0-alpha.11", path = "../primitives" }
2626

2727
[dev-dependencies]
2828
uuid = { version = "1", features = ["v4"] }

packages/test-helpers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ version.workspace = true
1717
[dependencies]
1818
lazy_static = "1.4"
1919
rand = "0.8.5"
20-
torrust-tracker-configuration = { version = "3.0.0-alpha.10", path = "../configuration" }
21-
torrust-tracker-primitives = { version = "3.0.0-alpha.10", path = "../primitives" }
20+
torrust-tracker-configuration = { version = "3.0.0-alpha.11", path = "../configuration" }
21+
torrust-tracker-primitives = { version = "3.0.0-alpha.11", path = "../primitives" }

0 commit comments

Comments
 (0)