Skip to content

Commit

Permalink
Merge #1056: Release Version 3.0.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
josecelano committed Oct 2, 2024
2 parents 569b222 + ba14fa3 commit 850e95e
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 26 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ license = "AGPL-3.0-only"
publish = true
repository = "https://github.com/torrust/torrust-tracker"
rust-version = "1.72"
version = "3.0.0-rc.1"
version = "3.0.0"

[dependencies]
anyhow = "1"
Expand Down Expand Up @@ -69,12 +69,12 @@ serde_repr = "0"
serde_with = { version = "3", features = ["json"] }
thiserror = "1"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0-rc.1", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0-rc.1", path = "packages/torrent-repository" }
torrust-tracker-clock = { version = "3.0.0", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0", path = "packages/torrent-repository" }
tower = { version = "0", features = ["timeout"] }
tower-http = { version = "0", features = ["compression-full", "cors", "propagate-header", "request-id", "trace"] }
trace = "0"
Expand All @@ -90,7 +90,7 @@ ignored = ["crossbeam-skiplist", "dashmap", "figment", "parking_lot", "serde_byt
[dev-dependencies]
local-ip-address = "0"
mockall = "0"
torrust-tracker-test-helpers = { version = "3.0.0-rc.1", path = "packages/test-helpers" }
torrust-tracker-test-helpers = { version = "3.0.0", path = "packages/test-helpers" }

[workspace]
members = [
Expand Down
2 changes: 1 addition & 1 deletion packages/clock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ version.workspace = true
chrono = { version = "0", default-features = false, features = ["clock"] }
lazy_static = "1"

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

[dev-dependencies]
1 change: 0 additions & 1 deletion packages/clock/src/clock/stopped/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/// Trait for types that can be used as a timestamp clock stopped
/// at a given time.
#[allow(clippy::module_name_repetitions)]
pub struct StoppedClock {}

Expand Down
1 change: 0 additions & 1 deletion packages/clock/src/conv/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pub fn convert_from_timestamp_to_datetime_utc(duration: DurationSinceUnixEpoch)
}

#[cfg(test)]

mod tests {
use chrono::DateTime;
use torrust_tracker_primitives::DurationSinceUnixEpoch;
Expand Down
2 changes: 1 addition & 1 deletion packages/configuration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde_json = { version = "1", features = ["preserve_order"] }
serde_with = "3"
thiserror = "1"
toml = "0"
torrust-tracker-located-error = { version = "3.0.0-rc.1", path = "../located-error" }
torrust-tracker-located-error = { version = "3.0.0", path = "../located-error" }
url = "2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ version.workspace = true

[dependencies]
rand = "0"
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
6 changes: 3 additions & 3 deletions packages/torrent-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ dashmap = "6"
futures = "0"
parking_lot = "0"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-rc.1", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-rc.1", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-rc.1", path = "../primitives" }
torrust-tracker-clock = { version = "3.0.0", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0", path = "../primitives" }
zerocopy = "0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
//! ## Run with docker
//!
//! You can run the tracker with a pre-built docker image. Please refer to the
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/tree/develop/docker).
//! [tracker docker documentation](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
//!
//! # Configuration
//!
Expand Down Expand Up @@ -214,7 +214,7 @@
//! of the `tracker.toml` file.
//!
//! The env var contains the same data as the `tracker.toml`. It's particularly
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/tree/develop/docker).
//! useful in you are [running the tracker with docker](https://github.com/torrust/torrust-tracker/blob/develop/docs/containers.md).
//!
//! > NOTICE: The `TORRUST_TRACKER_CONFIG_TOML` env var has priority over the `tracker.toml` file.
//!
Expand Down

0 comments on commit 850e95e

Please sign in to comment.