From d10dd38bfded016380e3624ff39d61af431e0027 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 24 Oct 2024 01:15:50 +0300 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20=E2=9C=A8=20Add=20release=20workflo?= =?UTF-8?q?w?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-plz.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/release-plz.yml diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml new file mode 100644 index 0000000..37c78df --- /dev/null +++ b/.github/workflows/release-plz.yml @@ -0,0 +1,27 @@ +name: release-plz + +permissions: + pull-requests: write + contents: write + +on: + push: + branches: + - main + +jobs: + release-plz: + name: Release-plz + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Rust toolchain + uses: dtolnay/rust-toolchain@stable + - name: Run release-plz + uses: MarcoIeni/release-plz-action@v0.5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} From d86c158c1e2e888587fd6fbc56eae9e5afc695a5 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 24 Oct 2024 01:16:06 +0300 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=F0=9F=A7=B9=20Format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1dd0a25..0811bd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = [ ".rustfmt.toml", ".vscode", ".editorconfig", - "Makefile" + "Makefile", ] [dependencies] From 66e01d97508d162ca09e8a204440c1570c51b8ca Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Thu, 24 Oct 2024 01:16:49 +0300 Subject: [PATCH 3/3] =?UTF-8?q?chore(release):=20=F0=9F=A7=B9=20Bump=20ver?= =?UTF-8?q?sion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to breaking version change in publicly exported dependency (tock-registers). --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0811bd5..5917e3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aarch64-cpu" -version = "9.4.0" +version = "10.0.0" authors = ["Andre Richter "] description = "Low level access to processors using the AArch64 execution state" homepage = "https://github.com/rust-embedded/aarch64-cpu" @@ -11,11 +11,11 @@ categories = ["embedded", "hardware-support", "no-std"] license = "MIT/Apache-2.0" edition = "2018" exclude = [ - ".github", - ".gitignore", - ".rustfmt.toml", - ".vscode", - ".editorconfig", + ".github", + ".gitignore", + ".rustfmt.toml", + ".vscode", + ".editorconfig", "Makefile", ]