Skip to content

Commit 5e2356e

Browse files
committed
feat: release 3.0.0-alpha.2
1 parent ba96da8 commit 5e2356e

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

Cargo.lock

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

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version.workspace = true
1010
authors = ["Nautilus Cyberneering <info@nautilus-cyberneering.de>, Mick van Dijke <mick@dutchbits.nl>"]
1111
edition = "2021"
1212
repository = "https://github.com/torrust/torrust-tracker"
13-
version = "3.0.0-alpha.1"
13+
version = "3.0.0-alpha.2"
1414

1515
[dependencies]
1616
tokio = { version = "1.26", features = ["rt-multi-thread", "net", "sync", "macros", "signal"] }
@@ -40,9 +40,9 @@ axum = "0.6.10"
4040
axum-server = { version = "0.4", features = ["tls-rustls"] }
4141
axum-client-ip = "0.4"
4242
bip_bencode = "0.4"
43-
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "packages/primitives" }
44-
torrust-tracker-configuration = { version = "3.0.0-alpha.1", path = "packages/configuration" }
45-
torrust-tracker-located-error = { version = "3.0.0-alpha.1", path = "packages/located-error" }
43+
torrust-tracker-primitives = { version = "3.0.0-alpha.2", path = "packages/primitives" }
44+
torrust-tracker-configuration = { version = "3.0.0-alpha.2", path = "packages/configuration" }
45+
torrust-tracker-located-error = { version = "3.0.0-alpha.2", path = "packages/located-error" }
4646
multimap = "0.9"
4747
hyper = "0.14"
4848

@@ -53,7 +53,7 @@ serde_urlencoded = "0.7"
5353
serde_repr = "0.1"
5454
serde_bytes = "0.11"
5555
local-ip-address = "0.5"
56-
torrust-tracker-test-helpers = { version = "3.0.0-alpha.1", path = "packages/test-helpers" }
56+
torrust-tracker-test-helpers = { version = "3.0.0-alpha.2", path = "packages/test-helpers" }
5757

5858
[workspace]
5959
members = [

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ After running the tracker these services will be available:
5656
## Documentation
5757

5858
* [Crate documentation](https://docs.rs/torrust-tracker/).
59-
* [API `v1`](https://docs.rs/torrust-tracker/3.0.0-alpha.1/torrust_tracker/servers/apis/v1).
60-
* [HTTP Tracker](https://docs.rs/torrust-tracker/3.0.0-alpha.1/torrust_tracker/servers/http).
61-
* [UDP Tracker](https://docs.rs/torrust-tracker/3.0.0-alpha.1/torrust_tracker/servers/udp).
59+
* [API `v1`](https://docs.rs/torrust-tracker/3.0.0-alpha.2/torrust_tracker/servers/apis/v1).
60+
* [HTTP Tracker](https://docs.rs/torrust-tracker/3.0.0-alpha.2/torrust_tracker/servers/http).
61+
* [UDP Tracker](https://docs.rs/torrust-tracker/3.0.0-alpha.2/torrust_tracker/servers/udp).
6262

6363
## Contributing
6464

@@ -68,7 +68,7 @@ How can you contribute?
6868

6969
* Bug reports and feature requests.
7070
* Code contributions. You can start by looking at the issues labeled ["good first issues"](https://github.com/torrust/torrust-tracker/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
71-
* Documentation improvements. Check the [documentation](https://docs.rs/torrust-tracker/) and [API documentation](https://docs.rs/torrust-tracker/3.0.0-alpha.1/torrust_tracker/servers/apis/v1) for typos, errors, or missing information.
71+
* Documentation improvements. Check the [documentation](https://docs.rs/torrust-tracker/) and [API documentation](https://docs.rs/torrust-tracker/3.0.0-alpha.2/torrust_tracker/servers/apis/v1) for typos, errors, or missing information.
7272
* Participation in the community. You can help by answering questions in the [discussions](https://github.com/torrust/torrust-tracker/discussions).
7373

7474
## License

packages/configuration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ config = "0.13"
1313
toml = "0.7"
1414
log = { version = "0.4", features = ["release_max_level_info"] }
1515
thiserror = "1.0"
16-
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "../primitives" }
17-
torrust-tracker-located-error = { version = "3.0.0-alpha.1", path = "../located-error" }
16+
torrust-tracker-primitives = { version = "3.0.0-alpha.2", path = "../primitives" }
17+
torrust-tracker-located-error = { version = "3.0.0-alpha.2", path = "../located-error" }
1818

1919
[dev-dependencies]
2020
uuid = { version = "1", features = ["v4"] }

packages/test-helpers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ edition.workspace = true
99
[dependencies]
1010
lazy_static = "1.4"
1111
rand = "0.8.5"
12-
torrust-tracker-configuration = { version = "3.0.0-alpha.1", path = "../configuration"}
13-
torrust-tracker-primitives = { version = "3.0.0-alpha.1", path = "../primitives"}
12+
torrust-tracker-configuration = { version = "3.0.0-alpha.2", path = "../configuration"}
13+
torrust-tracker-primitives = { version = "3.0.0-alpha.2", path = "../primitives"}

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
//! --publish 7070:7070/tcp \
111111
//! --publish 1212:1212/tcp \
112112
//! --volume "$(pwd)/storage":"/app/storage" \
113-
//! torrust/tracker:3.0.0-alpha.1
113+
//! torrust/tracker:3.0.0-alpha.2
114114
//! ```
115115
//!
116116
//! For more information about using docker visit the [tracker docker documentation](https://github.com/torrust/torrust-tracker/tree/develop/docker).
@@ -162,7 +162,7 @@
162162
//!
163163
//! The default configuration includes one disabled UDP server, one disabled HTTP server and the enabled API.
164164
//!
165-
//! For more information about each service and options you can visit the documentation for the [torrust-tracker-configuration crate](https://docs.rs/torrust-tracker-configuration/3.0.0-alpha.1/torrust_tracker_configuration/).
165+
//! For more information about each service and options you can visit the documentation for the [torrust-tracker-configuration crate](https://docs.rs/torrust-tracker-configuration).
166166
//!
167167
//! Alternatively to the `config.toml` file you can use one environment variable `TORRUST_TRACKER_CONFIG` to pass the configuration to the tracker:
168168
//!

0 commit comments

Comments
 (0)