Skip to content

Commit 1c4463a

Browse files
committed
Merge #1046: Version 3.0.0-rc.1 was Released
cb809d3 develop: bump to version 3.0.0-develop (Jose Celano) beb56d3 release: version 3.0.0-rc.1 (Jose Celano) Pull request description: Version 3.0.0-rc.1 was Released ACKs for top commit: josecelano: ACK cb809d3 Tree-SHA512: 206c02214c1aaa3d05398d16544a7f70a20d1d4586082a1494e6401022eb1d010cd4998e98d7c8a2918f2e06b603086de2f6a1dd220279ad64daf98dbede310c
2 parents 775446d + cb809d3 commit 1c4463a

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

Cargo.lock

+9-9
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-develop"
30+
version = "3.0.0-develop"
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-develop", path = "packages/clock" }
73-
torrust-tracker-configuration = { version = "3.0.0-rc.1-develop", path = "packages/configuration" }
74-
torrust-tracker-contrib-bencode = { version = "3.0.0-rc.1-develop", path = "contrib/bencode" }
75-
torrust-tracker-located-error = { version = "3.0.0-rc.1-develop", path = "packages/located-error" }
76-
torrust-tracker-primitives = { version = "3.0.0-rc.1-develop", path = "packages/primitives" }
77-
torrust-tracker-torrent-repository = { version = "3.0.0-rc.1-develop", path = "packages/torrent-repository" }
72+
torrust-tracker-clock = { version = "3.0.0-develop", path = "packages/clock" }
73+
torrust-tracker-configuration = { version = "3.0.0-develop", path = "packages/configuration" }
74+
torrust-tracker-contrib-bencode = { version = "3.0.0-develop", path = "contrib/bencode" }
75+
torrust-tracker-located-error = { version = "3.0.0-develop", path = "packages/located-error" }
76+
torrust-tracker-primitives = { version = "3.0.0-develop", path = "packages/primitives" }
77+
torrust-tracker-torrent-repository = { version = "3.0.0-develop", 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-develop", path = "packages/test-helpers" }
93+
torrust-tracker-test-helpers = { version = "3.0.0-develop", 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-develop", path = "../primitives" }
22+
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
2323

2424
[dev-dependencies]

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-develop", path = "../located-error" }
26+
torrust-tracker-located-error = { version = "3.0.0-develop", 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-develop", path = "../configuration" }
19+
torrust-tracker-configuration = { version = "3.0.0-develop", 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-develop", path = "../clock" }
26-
torrust-tracker-configuration = { version = "3.0.0-rc.1-develop", path = "../configuration" }
27-
torrust-tracker-primitives = { version = "3.0.0-rc.1-develop", path = "../primitives" }
25+
torrust-tracker-clock = { version = "3.0.0-develop", path = "../clock" }
26+
torrust-tracker-configuration = { version = "3.0.0-develop", path = "../configuration" }
27+
torrust-tracker-primitives = { version = "3.0.0-develop", path = "../primitives" }
2828
zerocopy = "0"
2929

3030
[dev-dependencies]

0 commit comments

Comments
 (0)