diff --git a/CHANGELOG.md b/CHANGELOG.md index 60713b8..78db0b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [7.0.1] - 2026-07-18 + +### Fixed + +- Fixed off-by-one index check that could lead to invalid memory accesses. (#164) + ## [7.0.0] - 2026-01-25 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 72d531c..0e0681f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "imbl" -version = "7.0.0" +version = "7.0.1" dependencies = [ "arbitrary", "archery", diff --git a/Cargo.toml b/Cargo.toml index 7842959..4792a3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imbl" -version = "7.0.0" +version = "7.0.1" authors = [ "Bodil Stokke ", "Joe Neeman ",