diff --git a/Cargo.lock b/Cargo.lock index 64aed490d..2c6bbdda9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3157,7 +3157,7 @@ dependencies = [ [[package]] name = "torrust-tracker" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "aquatic_udp_protocol", "async-trait", @@ -3203,7 +3203,7 @@ dependencies = [ [[package]] name = "torrust-tracker-configuration" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "config", "log", @@ -3218,7 +3218,7 @@ dependencies = [ [[package]] name = "torrust-tracker-contrib-bencode" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "criterion", "error-chain", @@ -3226,7 +3226,7 @@ dependencies = [ [[package]] name = "torrust-tracker-located-error" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "log", "thiserror", @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "torrust-tracker-primitives" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "derive_more", "serde", @@ -3242,7 +3242,7 @@ dependencies = [ [[package]] name = "torrust-tracker-test-helpers" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" dependencies = [ "lazy_static", "rand", diff --git a/Cargo.toml b/Cargo.toml index 76ec97919..e8bf5e1b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ license-file = "COPYRIGHT" publish = true repository = "https://github.com/torrust/torrust-tracker" rust-version = "1.72" -version = "3.0.0-alpha.5" +version = "3.0.0-alpha.6" [dependencies] @@ -66,10 +66,10 @@ axum = "0.6.20" axum-server = { version = "0.5", features = ["tls-rustls"] } axum-client-ip = "0.4.1" tower-http = { version = "0.4.3", features = ["compression-full"] } -torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.5", path = "contrib/bencode"} -torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "packages/primitives" } -torrust-tracker-configuration = { version = "3.0.0-alpha.5", path = "packages/configuration" } -torrust-tracker-located-error = { version = "3.0.0-alpha.5", path = "packages/located-error" } +torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.6", path = "contrib/bencode"} +torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "packages/primitives" } +torrust-tracker-configuration = { version = "3.0.0-alpha.6", path = "packages/configuration" } +torrust-tracker-located-error = { version = "3.0.0-alpha.6", path = "packages/located-error" } multimap = "0.9" hyper = "0.14" @@ -80,7 +80,7 @@ serde_urlencoded = "0.7" serde_repr = "0.1" serde_bytes = "0.11" local-ip-address = "0.5" -torrust-tracker-test-helpers = { version = "3.0.0-alpha.5", path = "packages/test-helpers" } +torrust-tracker-test-helpers = { version = "3.0.0-alpha.6", path = "packages/test-helpers" } [workspace] members = [ diff --git a/README.md b/README.md index 7e3d246e5..551471914 100644 --- a/README.md +++ b/README.md @@ -179,13 +179,13 @@ This project was a joint effort by [Nautilus Cyberneering GmbH][nautilus] and [D [containers.md]: ./docs/containers.md -[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/apis/v1 -[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/http -[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/udp +[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/apis/v1 +[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/http +[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/udp [good first issues]: https://github.com/torrust/torrust-tracker/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 [documentation]: https://docs.rs/torrust-tracker/ -[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/apis/v1 +[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/apis/v1 [discussions]: https://github.com/torrust/torrust-tracker/discussions [COPYRIGHT]: ./COPYRIGHT diff --git a/packages/configuration/Cargo.toml b/packages/configuration/Cargo.toml index ba2f8a466..4a3028f18 100644 --- a/packages/configuration/Cargo.toml +++ b/packages/configuration/Cargo.toml @@ -22,8 +22,8 @@ config = "0.13" toml = "0.7" log = { version = "0.4", features = ["release_max_level_info"] } thiserror = "1.0" -torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "../primitives" } -torrust-tracker-located-error = { version = "3.0.0-alpha.5", path = "../located-error" } +torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "../primitives" } +torrust-tracker-located-error = { version = "3.0.0-alpha.6", path = "../located-error" } [dev-dependencies] uuid = { version = "1", features = ["v4"] } diff --git a/packages/test-helpers/Cargo.toml b/packages/test-helpers/Cargo.toml index be3cc352d..bec9bb216 100644 --- a/packages/test-helpers/Cargo.toml +++ b/packages/test-helpers/Cargo.toml @@ -17,5 +17,5 @@ version.workspace = true [dependencies] lazy_static = "1.4" rand = "0.8.5" -torrust-tracker-configuration = { version = "3.0.0-alpha.5", path = "../configuration" } -torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "../primitives" } +torrust-tracker-configuration = { version = "3.0.0-alpha.6", path = "../configuration" } +torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "../primitives" }