Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 850e95e

Browse files
committedOct 2, 2024
Merge torrust#1056: Release Version 3.0.0
ba14fa3 release: version 3.0.0 (Jose Celano) 6b2d8e8 fix: clippy errors (Jose Celano) ae5ea1e docs: fix link to containers docs (Jose Celano) cb809d3 develop: bump to version 3.0.0-develop (Jose Celano) Pull request description: Release Version 3.0.0 ACKs for top commit: josecelano: ACK ba14fa3 Tree-SHA512: 405836f0a7a8eeca2797694f04a271b5d3c4cd8c73aeace318f95687b751d120b00236a8a52b98c7288aa9eb353022f945b6b6c34dee2e79a144d7d8e58d35ee
2 parents 569b222 + ba14fa3 commit 850e95e

File tree

9 files changed

+24
-26
lines changed

9 files changed

+24
-26
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

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ license = "AGPL-3.0-only"
2727
publish = true
2828
repository = "https://github.com/torrust/torrust-tracker"
2929
rust-version = "1.72"
30-
version = "3.0.0-rc.1"
30+
version = "3.0.0"
3131

3232
[dependencies]
3333
anyhow = "1"
@@ -69,12 +69,12 @@ serde_repr = "0"
6969
serde_with = { version = "3", features = ["json"] }
7070
thiserror = "1"
7171
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
72-
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "packages/clock" }
73-
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "packages/configuration" }
74-
torrust-tracker-contrib-bencode = { version = "3.0.0-rc.1", path = "contrib/bencode" }
75-
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "packages/located-error" }
76-
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "packages/primitives" }
77-
torrust-tracker-torrent-repository = { version = "3.0.0-rc.1", path = "packages/torrent-repository" }
72+
torrust-tracker-clock = { version = "3.0.0", path = "packages/clock" }
73+
torrust-tracker-configuration = { version = "3.0.0", path = "packages/configuration" }
74+
torrust-tracker-contrib-bencode = { version = "3.0.0", path = "contrib/bencode" }
75+
torrust-tracker-located-error = { version = "3.0.0", path = "packages/located-error" }
76+
torrust-tracker-primitives = { version = "3.0.0", path = "packages/primitives" }
77+
torrust-tracker-torrent-repository = { version = "3.0.0", path = "packages/torrent-repository" }
7878
tower = { version = "0", features = ["timeout"] }
7979
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
8080
trace = "0"
@@ -90,7 +90,7 @@ ignored = ["crossbeam-skiplist", "dashmap", "figment", "parking_lot", "serde_byt
9090
[dev-dependencies]
9191
local-ip-address = "0"
9292
mockall = "0"
93-
torrust-tracker-test-helpers = { version = "3.0.0-rc.1", path = "packages/test-helpers" }
93+
torrust-tracker-test-helpers = { version = "3.0.0", path = "packages/test-helpers" }
9494

9595
[workspace]
9696
members = [

‎packages/clock/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ version.workspace = true
1919
chrono = { version = "0", default-features = false, features = ["clock"] }
2020
lazy_static = "1"
2121

22-
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "../primitives" }
22+
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
2323

2424
[dev-dependencies]

‎packages/clock/src/clock/stopped/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/// Trait for types that can be used as a timestamp clock stopped
22
/// at a given time.
3-
43
#[allow(clippy::module_name_repetitions)]
54
pub struct StoppedClock {}
65

‎packages/clock/src/conv/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ pub fn convert_from_timestamp_to_datetime_utc(duration: DurationSinceUnixEpoch)
4848
}
4949

5050
#[cfg(test)]
51-
5251
mod tests {
5352
use chrono::DateTime;
5453
use torrust_tracker_primitives::DurationSinceUnixEpoch;

‎packages/configuration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde_json = { version = "1", features = ["preserve_order"] }
2323
serde_with = "3"
2424
thiserror = "1"
2525
toml = "0"
26-
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "../located-error" }
26+
torrust-tracker-located-error = { version = "3.0.0", path = "../located-error" }
2727
url = "2"
2828

2929
[dev-dependencies]

‎packages/test-helpers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ version.workspace = true
1616

1717
[dependencies]
1818
rand = "0"
19-
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
19+
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }

‎packages/torrent-repository/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ dashmap = "6"
2222
futures = "0"
2323
parking_lot = "0"
2424
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
25-
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "../clock" }
26-
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
27-
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "../primitives" }
25+
torrust-tracker-clock = { version = "3.0.0", path = "../clock" }
26+
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
27+
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
2828
zerocopy = "0"
2929

3030
[dev-dependencies]

‎src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
//! ## Run with docker
156156
//!
157157
//! You can run the tracker with a pre-built docker image. Please refer to the
158-
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/tree/develop/docker).
158+
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
159159
//!
160160
//! # Configuration
161161
//!
@@ -214,7 +214,7 @@
214214
//! of the `tracker.toml` file.
215215
//!
216216
//! The env var contains the same data as the `tracker.toml`. It's particularly
217-
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/tree/develop/docker).
217+
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
218218
//!
219219
//! > NOTICE: The `TORRUST_TRACKER_CONFIG_TOML` env var has priority over the `tracker.toml` file.
220220
//!

0 commit comments

Comments
 (0)
Please sign in to comment.