Skip to content

Commit 4915289

Browse files
committed
Merge #350: Release Version 3.0.0-alpha.2
b289621 release: version 3.0.0-alpha.2 (Cameron Garnham) 9bea634 chore: update cargo lockfile (Cameron Garnham) 7fa6215 chore: bump development version (Cameron Garnham) 3305e74 ci: fix workflows (Cameron Garnham) Pull request description: ACKs for top commit: da2ce7: ACK 2d5ff0d Tree-SHA512: f1f1b2050484aaa19b962e9833078c5aa22b534ac8188ea0531d38d1ac46eabc8d56bcd00be3e94d2f71383aaac7ae3be723bdefe4fc215fe4dea82abada6dfa
2 parents 0b95a3a + 2d5ff0d commit 4915289

File tree

4 files changed

+66
-68
lines changed

4 files changed

+66
-68
lines changed

.github/workflows/container.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
push: false
3737
load: true
3838
target: ${{ matrix.target }}
39-
tags: torrust-tracker:local
39+
tags: torrust-index:local
4040
cache-from: type=gha
4141
cache-to: type=gha
4242

4343
- id: inspect
4444
name: Inspect
45-
run: docker image inspect torrust-tracker:local
45+
run: docker image inspect torrust-index:local
4646

4747
- id: checkout
4848
name: Checkout Repository
@@ -66,7 +66,7 @@ jobs:
6666
- id: check
6767
name: Check Context
6868
run: |
69-
if [[ "${{ github.repository }}" == "torrust/torrust-tracker" ]]; then
69+
if [[ "${{ github.repository }}" == "torrust/torrust-index" ]]; then
7070
if [[ "${{ github.event_name }}" == "push" ]]; then
7171
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
7272

.github/workflows/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
with:
2626
toolchain: ${{ matrix.toolchain }}
2727

28+
- id: imdl
29+
name: Install Intermodal
30+
run: cargo install imdl
31+
2832
- id: test
2933
name: Run Unit Tests
3034
run: cargo test --tests --benches --examples --workspace --all-targets --all-features

Cargo.lock

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

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ 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-alpha.1"
30+
version = "3.0.0-alpha.2"
31+
3132

3233
[profile.dev.package.sqlx-macros]
3334
opt-level = 3
@@ -68,7 +69,7 @@ text-to-png = "0"
6869
thiserror = "1"
6970
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
7071
toml = "0"
71-
torrust-index-located-error = { version = "3.0.0-alpha.1", path = "packages/located-error" }
72+
torrust-index-located-error = { version = "3.0.0-alpha.2", path = "packages/located-error" }
7273
tower-http = { version = "0", features = ["compression-full", "cors"] }
7374
urlencoding = "2"
7475
uuid = { version = "1", features = ["v4"] }

0 commit comments

Comments
 (0)