From 64d3f7194fb77a7cd4a28bf2c2662b7d2e103167 Mon Sep 17 00:00:00 2001 From: "cachekit-release-bot[bot]" <247960786+cachekit-release-bot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 05:53:30 +0000 Subject: [PATCH] chore(main): release cachekit-core 0.2.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af55ef0..949ce4c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.1" + ".": "0.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cb5fe50..0451cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.2](https://github.com/cachekit-io/cachekit-core/compare/cachekit-core-v0.2.1...cachekit-core-v0.2.2) (2026-06-16) + + +### Performance Improvements + +* borrow input in ByteStorage write path instead of copying it ([#48](https://github.com/cachekit-io/cachekit-core/issues/48)) ([7f5ebc1](https://github.com/cachekit-io/cachekit-core/commit/7f5ebc1410ee0d16b5c31b4d19097d3d9e1d5582)) + ## [0.2.1](https://github.com/cachekit-io/cachekit-core/compare/cachekit-core-v0.2.0...cachekit-core-v0.2.1) (2026-05-31) diff --git a/Cargo.lock b/Cargo.lock index d43bfdd..6814b5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "cachekit-core" -version = "0.2.1" +version = "0.2.2" dependencies = [ "aes", "aes-gcm", diff --git a/Cargo.toml b/Cargo.toml index dd2e46b..76f4f24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cachekit-core" -version = "0.2.1" +version = "0.2.2" edition = "2021" authors = ["cachekit Contributors"] description = "LZ4 compression, xxHash3 integrity, AES-256-GCM encryption for byte payloads"