diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d924fbf..d30e8b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: name: Run tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v5 - name: Install Rust stable uses: dtolnay/rust-toolchain@stable with: @@ -39,7 +39,7 @@ jobs: name: "Lint" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v5 - name: Install Rust nightly uses: dtolnay/rust-toolchain@stable with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c982db9..7ef3e06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: contents: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Install Rust toolchain @@ -43,7 +43,7 @@ jobs: cancel-in-progress: false steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Install Rust toolchain diff --git a/CHANGELOG.md b/CHANGELOG.md index 038967e..aa68df1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -## [0.0.3] - 2026-01-11 +## [0.0.3] - 2025-10-14 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index db5ff2d..0c7bdbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ exclude = ["flake.nix", "flake.lock", ".envrc", "cliff.toml", "release-plz.toml" [dependencies] thiserror = "2.0" -flume = { version = "0.12", optional = true } +flume = { version = "0.11", optional = true } crossbeam-channel = { version = "0.5", optional = true } arc-swap = "1.7.1"