Skip to content

Commit a8dd868

Browse files
committed
release: bump version to 3.0.0-alpha.6
1 parent 739066d commit a8dd868

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/container.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118

119119
steps:
120120
- id: meta_development
121-
if: needs.secrets.check.type == 'development'
121+
if: needs.context.check.type == 'development'
122122
name: Docker Meta (development)
123123
uses: docker/metadata-action@v4
124124
with:
@@ -128,17 +128,17 @@ jobs:
128128
type=ref,event=branch
129129
130130
- id: meta_release
131-
if: needs.secrets.check.type == 'release'
131+
if: needs.context.check.type == 'release'
132132
name: Docker Meta (release)
133133
uses: docker/metadata-action@v4
134134
with:
135135
images: |
136136
"${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
137137
tags: |
138-
type=semver,value=${{ needs.secrets.check.version }},pattern={{raw}}
139-
type=semver,value=${{ needs.secrets.check.version }},pattern={{version}}
140-
type=semver,value=${{ needs.secrets.check.version }},pattern=v{{major}}
141-
type=semver,value=${{ needs.secrets.check.version }},pattern={{major}}.{{minor}}
138+
type=semver,value=${{ needs.context.check.version }},pattern={{raw}}
139+
type=semver,value=${{ needs.context.check.version }},pattern={{version}}
140+
type=semver,value=${{ needs.context.check.version }},pattern=v{{major}}
141+
type=semver,value=${{ needs.context.check.version }},pattern={{major}}.{{minor}}
142142
143143
- id: login
144144
name: Login to Docker Hub

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ license-file = "COPYRIGHT"
2929
publish = true
3030
repository = "https://github.com/torrust/torrust-tracker"
3131
rust-version = "1.72"
32-
version = "3.0.0-alpha.5"
32+
version = "3.0.0-alpha.6"
3333

3434

3535
[dependencies]
@@ -66,10 +66,10 @@ axum = "0.6.20"
6666
axum-server = { version = "0.5", features = ["tls-rustls"] }
6767
axum-client-ip = "0.4.1"
6868
tower-http = { version = "0.4.3", features = ["compression-full"] }
69-
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.5", path = "contrib/bencode"}
70-
torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "packages/primitives" }
71-
torrust-tracker-configuration = { version = "3.0.0-alpha.5", path = "packages/configuration" }
72-
torrust-tracker-located-error = { version = "3.0.0-alpha.5", path = "packages/located-error" }
69+
torrust-tracker-contrib-bencode = { version = "3.0.0-alpha.6", path = "contrib/bencode"}
70+
torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "packages/primitives" }
71+
torrust-tracker-configuration = { version = "3.0.0-alpha.6", path = "packages/configuration" }
72+
torrust-tracker-located-error = { version = "3.0.0-alpha.6", path = "packages/located-error" }
7373
multimap = "0.9"
7474
hyper = "0.14"
7575

@@ -80,7 +80,7 @@ serde_urlencoded = "0.7"
8080
serde_repr = "0.1"
8181
serde_bytes = "0.11"
8282
local-ip-address = "0.5"
83-
torrust-tracker-test-helpers = { version = "3.0.0-alpha.5", path = "packages/test-helpers" }
83+
torrust-tracker-test-helpers = { version = "3.0.0-alpha.6", path = "packages/test-helpers" }
8484

8585
[workspace]
8686
members = [

README.md

Lines changed: 4 additions & 4 deletions
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.5/torrust_tracker/servers/apis/v1
183-
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/http
184-
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.5/torrust_tracker/servers/udp
182+
[api]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/apis/v1
183+
[http]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/http
184+
[udp]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/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.5/torrust_tracker/servers/apis/v1
188+
[API documentation]: https://docs.rs/torrust-tracker/3.0.0-alpha.6/torrust_tracker/servers/apis/v1
189189
[discussions]: https://github.com/torrust/torrust-tracker/discussions
190190

191191
[COPYRIGHT]: ./COPYRIGHT

packages/configuration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ config = "0.13"
2222
toml = "0.7"
2323
log = { version = "0.4", features = ["release_max_level_info"] }
2424
thiserror = "1.0"
25-
torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "../primitives" }
26-
torrust-tracker-located-error = { version = "3.0.0-alpha.5", path = "../located-error" }
25+
torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "../primitives" }
26+
torrust-tracker-located-error = { version = "3.0.0-alpha.6", path = "../located-error" }
2727

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

packages/test-helpers/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.5", path = "../configuration" }
21-
torrust-tracker-primitives = { version = "3.0.0-alpha.5", path = "../primitives" }
20+
torrust-tracker-configuration = { version = "3.0.0-alpha.6", path = "../configuration" }
21+
torrust-tracker-primitives = { version = "3.0.0-alpha.6", path = "../primitives" }

0 commit comments

Comments
 (0)