From e18a0c38258bbfa3eb7b86aec372b3c74a76a740 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Fri, 19 Sep 2025 21:35:33 -0700 Subject: [PATCH] Refactor relaese workflow --- .github/workflows/release.yaml | 2 -- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 24a009a..b37e366 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,8 +15,6 @@ jobs: environment: ${{ github.ref == 'refs/heads/main' && 'release' || '' }} steps: - uses: actions/checkout@v5 - with: - submodules: true - uses: raviqqe/cargo-cache@v1 - run: cargo install cargo-workspaces - uses: rust-lang/crates-io-auth-action@v1 diff --git a/Cargo.lock b/Cargo.lock index c4a5177..c798844 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 4 [[package]] name = "array-queue" -version = "0.4.2" +version = "0.4.3" diff --git a/Cargo.toml b/Cargo.toml index 782881d..ffeeb67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "array-queue" -version = "0.4.2" +version = "0.4.3" edition = "2024" description = "Fixed size bidirectional queues based on arrays" license = "MIT"