From f4dcab219a48b49a3190bb0029c1be1d8b075b2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:23:21 +0000 Subject: [PATCH 1/3] chore(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d30e8b9..d924fbf 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - name: Install Rust nightly uses: dtolnay/rust-toolchain@stable with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ef3e06..c982db9 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@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install Rust toolchain @@ -43,7 +43,7 @@ jobs: cancel-in-progress: false steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install Rust toolchain From 4c4fa2b30a8b41726d38bb0ca285fbc559e6c8c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:23:56 +0000 Subject: [PATCH 2/3] chore(deps): update flume requirement from 0.11 to 0.12 --- updated-dependencies: - dependency-name: flume dependency-version: 0.12.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ada7cc2..a4277f3 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.11", optional = true } +flume = { version = "0.12", optional = true } crossbeam-channel = { version = "0.5", optional = true } arc-swap = "1.7.1" From 46c72410afb8b76289d23eb1cfdf4d31ad00faaf Mon Sep 17 00:00:00 2001 From: Callum Leslie Date: Sun, 11 Jan 2026 10:49:37 +0000 Subject: [PATCH 3/3] chore: release v0.0.3 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25e85a7..038967e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ 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 + +### 🚀 Features + +- Remove closed flag from ChannelState +- Add internal constructor for `Sucker`/`Sourcer` + +### 🐛 Bug Fixes + +- Correct toolchain in flake ## [0.0.2] - 2025-09-04 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index a4277f3..db5ff2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "suck" description = "Suck data up through a channel" authors = ["Callum Leslie "] -version = "0.0.2" +version = "0.0.3" edition = "2024" documentation = "https://docs.rs/suck" homepage = "https://github.com/callumio/suck"