From fc89b0c76d51bd13a591dca5fc9b9c8a0224aa18 Mon Sep 17 00:00:00 2001 From: Elliott Linder Date: Mon, 25 Mar 2024 09:20:08 +0100 Subject: [PATCH] docs: update version to 3.0.2 --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fee8286..c127dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [3.0.2] - 2024-03-25 + +### Removed + +- Removed explicit support for OpenBSD < 7.x (req libc locking) + +### Fixed + +- Dropped explicit versioning of `libc` version. + ## [3.0.1] - 2024-03-06 ### Added @@ -43,6 +53,7 @@ All notable changes to this project will be documented in this file. - Removed `page::size_from_range`. - Removed deprecated functionality. -[unreleased]: https://github.com/darfink/region-rs/compare/v3.0.1...HEAD +[unreleased]: https://github.com/darfink/region-rs/compare/v3.0.2...HEAD +[3.0.2]: https://github.com/darfink/region-rs/compare/v3.0.1...v3.0.2 [3.0.1]: https://github.com/darfink/region-rs/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/darfink/region-rs/compare/v2.2.0...v3.0.0 diff --git a/Cargo.toml b/Cargo.toml index edc860a..781bf04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "region" readme = "README.md" repository = "https://github.com/darfink/region-rs" -version = "3.0.1" +version = "3.0.2" [dependencies] bitflags = "1.0" diff --git a/README.md b/README.md index 07c5f8f..e0ff6af 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -region = "3.0.1" +region = "3.0.2" ``` ## Example @@ -92,4 +92,4 @@ let guard = region::lock(data.as_ptr(), data.len())?; [docs-shield]: https://img.shields.io/badge/docs-crates-green.svg?style=for-the-badge [docs]: https://docs.rs/region/ [license-shield]: https://img.shields.io/crates/l/region.svg?style=for-the-badge -[license]: https://github.com/darfink/region-rs \ No newline at end of file +[license]: https://github.com/darfink/region-rs diff --git a/src/lib.rs b/src/lib.rs index 5a67e4c..17ed2de 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,7 @@ //! //! ```toml //! [dependencies] -//! region = "3.0.1" +//! region = "3.0.2" //! ``` //! //! # Examples