Skip to content

Commit

Permalink
release: version 3.0.0-alpha.12
Browse files Browse the repository at this point in the history
  • Loading branch information
josecelano committed Aug 12, 2024
1 parent acb860f commit e81ba06
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 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-alpha.12-develop"
version = "3.0.0-alpha.12"

[dependencies]
anyhow = "1"
Expand Down Expand Up @@ -69,12 +69,12 @@ serde_repr = "0"
serde_with = { version = "3.9.0", features = ["json"] }
thiserror = "1"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
torrust-tracker-clock = { version = "3.0.0-alpha.12-develop", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12-develop", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.12-develop", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0-alpha.12-develop", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0-alpha.12-develop", path = "packages/torrent-repository" }
torrust-tracker-clock = { version = "3.0.0-alpha.12", path = "packages/clock" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12", path = "packages/configuration" }
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.12", path = "contrib/bencode" }
torrust-tracker-located-error = { version = "3.0.0-alpha.12", path = "packages/located-error" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12", path = "packages/primitives" }
torrust-tracker-torrent-repository = { version = "3.0.0-alpha.12", 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-alpha.12-develop", path = "packages/test-helpers" }
torrust-tracker-test-helpers = { version = "3.0.0-alpha.12", 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-alpha.12-develop", path = "../primitives" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12", path = "../primitives" }

[dev-dependencies]
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-alpha.12-develop", path = "../located-error" }
torrust-tracker-located-error = { version = "3.0.0-alpha.12", 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-alpha.12-develop", path = "../configuration" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12", 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 @@ -21,9 +21,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-alpha.12-develop", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12-develop", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12-develop", path = "../primitives" }
torrust-tracker-clock = { version = "3.0.0-alpha.12", path = "../clock" }
torrust-tracker-configuration = { version = "3.0.0-alpha.12", path = "../configuration" }
torrust-tracker-primitives = { version = "3.0.0-alpha.12", path = "../primitives" }

[dev-dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
Expand Down

0 comments on commit e81ba06

Please sign in to comment.