From e45e171b23189807a261e3f5000ec723041a1089 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 20:47:13 +0000 Subject: [PATCH 1/2] Bump bytes from 1.8.0 to 1.11.1 in the cargo group across 1 directory Bumps the cargo group with 1 update in the / directory: [bytes](https://github.com/tokio-rs/bytes). Updates `bytes` from 1.8.0 to 1.11.1 - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/bytes/compare/v1.8.0...v1.11.1) --- updated-dependencies: - dependency-name: bytes dependency-version: 1.11.1 dependency-type: indirect dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3bd09ff..3660f26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,9 +57,9 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bytes" -version = "1.8.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "cfg-if" From 4e566b4f63d5322c0c054efed96d9a0e73f21b62 Mon Sep 17 00:00:00 2001 From: Codex Date: Tue, 10 Mar 2026 11:48:28 +0100 Subject: [PATCH 2/2] Bump crate version to 0.2.0 --- CHANGELOG.md | 7 +++---- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e72283d..eb44555 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Timer statistics (execution count, elapsed time). - Comprehensive error handling. -## Unreleased (1.1.0) -### Added -- Support for scheduled timers. -- Improved performance and stability. +## Unreleased (0.2.0) +### Changed +- Raised the minimum resolved `bytes` dependency to 1.11.1. diff --git a/Cargo.lock b/Cargo.lock index 3660f26..913b6ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -367,7 +367,7 @@ dependencies = [ [[package]] name = "timer-lib" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-trait", "futures", diff --git a/Cargo.toml b/Cargo.toml index 72279c9..e5a5ef5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "timer-lib" -version = "0.1.0" +version = "0.2.0" authors = ["Tim Gatzke "] edition = "2021" description = "A feature-rich Rust library for creating and managing timers."