Skip to content

Commit e67de40

Browse files
committed
Merge #445: Release Version 3.0.0-alpha.8
98261ea release: version 3.0.0-alpha.8 (Cameron Garnham) 4f4d136 docs: small style update to release process (Cameron Garnham) aafe394 ci: fix deploymment workflow (Cameron Garnham) 744f51a version: bump version (Cameron Garnham) Pull request description: Small fixes from (failed) version 3.0.0-alpha.7 ACKs for top commit: da2ce7: ACK 22a18e9 Tree-SHA512: e5cccddd011da851264c9e6c641bd3e8345c1ad1ce9f9d331dd703cbc835c9a2ea97347cf1be35294d2c323937d690cc2e0a17b0365dce362814295ba3e54e7f
2 parents 2e7dd19 + 22a18e9 commit e67de40

File tree

7 files changed

+26
-27
lines changed

7 files changed

+26
-27
lines changed

.github/workflows/deployment.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,10 @@ jobs:
6464
with:
6565
toolchain: stable
6666

67-
env:
68-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
69-
7067
- id: publish
7168
name: Publish Crates
69+
env:
70+
CARGO_REGISTRY_TOKEN: "${{ secrets.CARGO_REGISTRY_TOKEN }}"
7271
run: |
7372
cargo publish -p torrust-tracker-contrib-bencode
7473
cargo publish -p torrust-tracker-located-error

Cargo.lock

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

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license-file = "COPYRIGHT"
2626
publish = true
2727
repository = "https://github.com/torrust/torrust-tracker"
2828
rust-version = "1.72"
29-
version = "3.0.0-alpha.7"
29+
version = "3.0.0-alpha.8"
3030

3131
[dependencies]
3232
aquatic_udp_protocol = "0.8"
@@ -56,10 +56,10 @@ serde_json = "1.0"
5656
serde_with = "3.2"
5757
thiserror = "1.0"
5858
tokio = { version = "1.29", features = ["macros", "net", "rt-multi-thread", "signal", "sync"] }
59-
torrust-tracker-configuration = { version = "3.0.0-alpha.7", path = "packages/configuration" }
60-
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.7", path = "contrib/bencode" }
61-
torrust-tracker-located-error = { version = "3.0.0-alpha.7", path = "packages/located-error" }
62-
torrust-tracker-primitives = { version = "3.0.0-alpha.7", path = "packages/primitives" }
59+
torrust-tracker-configuration = { version = "3.0.0-alpha.8", path = "packages/configuration" }
60+
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.8", path = "contrib/bencode" }
61+
torrust-tracker-located-error = { version = "3.0.0-alpha.8", path = "packages/located-error" }
62+
torrust-tracker-primitives = { version = "3.0.0-alpha.8", path = "packages/primitives" }
6363
tower-http = { version = "0.4", features = ["compression-full"] }
6464
uuid = { version = "1", features = ["v4"] }
6565

@@ -70,7 +70,7 @@ reqwest = { version = "0.11.18", features = ["json"] }
7070
serde_bytes = "0.11"
7171
serde_repr = "0.1"
7272
serde_urlencoded = "0.7"
73-
torrust-tracker-test-helpers = { version = "3.0.0-alpha.7", path = "packages/test-helpers" }
73+
torrust-tracker-test-helpers = { version = "3.0.0-alpha.8", path = "packages/test-helpers" }
7474

7575
[workspace]
7676
members = ["contrib/bencode", "packages/configuration", "packages/located-error", "packages/primitives", "packages/test-helpers"]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ This project was a joint effort by [Nautilus Cyberneering GmbH][nautilus] and [D
179179

180180
[containers.md]: ./docs/containers.md
181181

182-
[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.7/torrust_tracker/servers/apis/v1
183-
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.7/torrust_tracker/servers/http
184-
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.7/torrust_tracker/servers/udp
182+
[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.8/torrust_tracker/servers/apis/v1
183+
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.8/torrust_tracker/servers/http
184+
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.8/torrust_tracker/servers/udp
185185

186186
[good first issues]: https://github.com/torrust/torrust-tracker/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22
187187
[documentation]: https://docs.rs/torrust-tracker/
188-
[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.7/torrust_tracker/servers/apis/v1
188+
[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.8/torrust_tracker/servers/apis/v1
189189
[discussions]: https://github.com/torrust/torrust-tracker/discussions
190190

191191
[COPYRIGHT]: ./COPYRIGHT

docs/release_process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Torrust Tracker is published according to this protocol:
1313

1414
- [ ] `develop` is ready for branching for a release.
1515
- [ ] force-push develop to `staging` branch.
16-
- [ ] commit `release: version (semantic version)`, removing the `-develop` suffix.
16+
- [ ] commit `release: version (semantic version)`, that removes the `-develop` suffix.
1717
- [ ] create pull request to merge `staging` into `main` branch.
1818
- [ ] check all status checks succeed for `main` branch.
19-
- [ ] push `main` branch to `releases\v(semantic version)` branch.
20-
- [ ] check all status checks success for `releases\v(semantic version)` branch.
21-
- [ ] create signed `v(semantic version)` tag from `releases\v(semantic version) HEAD`.
19+
- [ ] push `main` branch to `releases/(semantic version)` branch.
20+
- [ ] check all status checks success for `releases/(semantic version)` branch.
21+
- [ ] create signed `v(semantic version)` tag from `releases/(semantic version) HEAD`.
2222
- [ ] create github release from `v(semantic version)` tag.
2323
- [ ] merge the `main` branch back into `develop` branch, assuring that the (semantic version) has the suffix `-develop`.
2424

packages/configuration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ serde = { version = "1.0", features = ["derive"] }
2121
serde_with = "3.2"
2222
thiserror = "1.0"
2323
toml = "0.8"
24-
torrust-tracker-located-error = { version = "3.0.0-alpha.7", path = "../located-error" }
25-
torrust-tracker-primitives = { version = "3.0.0-alpha.7", path = "../primitives" }
24+
torrust-tracker-located-error = { version = "3.0.0-alpha.8", path = "../located-error" }
25+
torrust-tracker-primitives = { version = "3.0.0-alpha.8", path = "../primitives" }
2626

2727
[dev-dependencies]
2828
uuid = { version = "1", features = ["v4"] }

packages/test-helpers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ version.workspace = true
1717
[dependencies]
1818
lazy_static = "1.4"
1919
rand = "0.8.5"
20-
torrust-tracker-configuration = { version = "3.0.0-alpha.7", path = "../configuration" }
21-
torrust-tracker-primitives = { version = "3.0.0-alpha.7", path = "../primitives" }
20+
torrust-tracker-configuration = { version = "3.0.0-alpha.8", path = "../configuration" }
21+
torrust-tracker-primitives = { version = "3.0.0-alpha.8", path = "../primitives" }

0 commit comments

Comments
 (0)