Skip to content

Commit b47f8c0

Browse files
committed
⬆ Bump version to 0.8.0
1 parent 7bad228 commit b47f8c0

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/workflows/publish.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,19 @@ jobs:
88
check:
99
uses: nalexpear/tracing-stackdriver/.github/workflows/check.yml@master
1010
secrets: inherit
11-
publish:
11+
semver:
1212
needs: check
1313
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
- name: Check semver
18+
uses: obi1kenobi/cargo-semver-checks-action@v2
19+
with:
20+
feature-group: all-features
21+
publish:
22+
needs: semver
23+
runs-on: ubuntu-latest
1424
steps:
1525
- name: Checkout sources
1626
uses: actions/checkout@v3
@@ -34,10 +44,6 @@ jobs:
3444
with:
3545
script: |
3646
core.setFailed('Tagged version ${{ github.ref_name }} does not match Cargo version v${{ env.cargo_version }}')
37-
- name: Check for SemVer violations
38-
uses: obi1kenobi/cargo-semver-checks-action@v2
39-
with:
40-
feature-group: all-features
4147
- name: Publish the new version
4248
run: cargo publish --token ${CRATES_TOKEN}
4349
env:

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-stackdriver"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors = ["Alex Pearson <[email protected]>"]
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)