From 884f2c90c2d0700ae6f66cc1c939ce42467ef89d Mon Sep 17 00:00:00 2001 From: awolverp Date: Sat, 18 Jan 2025 18:50:44 +0330 Subject: [PATCH] Bump version and update CHANGELOG --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0bbfa7..774fc07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## 4.4.2 - 2024-12-19 +### Updated +- Update `pyo3` to v0.23.4 +- Remove `Box` layout from Rust code + +## 4.4.1 - 2024-12-19 +### Updated +- Update `pyo3` to v.0.23.3 + ## 4.4.0 - 2024-11-28 ### Added - New `copy_level` parameter added to `cachedmethod` and `cached`. diff --git a/Cargo.lock b/Cargo.lock index b17441d..6b378f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cachebox" -version = "4.4.1" +version = "4.4.2" dependencies = [ "cfg-if", "fastrand", diff --git a/Cargo.toml b/Cargo.toml index 0d1f96d..609c383 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cachebox" -version = "4.4.1" +version = "4.4.2" edition = "2021" description = "The fastest memoizing and caching Python library written in Rust" readme = "README.md"