Skip to content

Commit

Permalink
docs: update version to 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
darfink committed Mar 25, 2024
1 parent 4fdd06c commit fc89b0c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
region = "3.0.1"
region = "3.0.2"
```

## Example
Expand Down Expand Up @@ -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
[license]: https://github.com/darfink/region-rs
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
//!
//! ```toml
//! [dependencies]
//! region = "3.0.1"
//! region = "3.0.2"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit fc89b0c

Please sign in to comment.