Skip to content

Commit

Permalink
release: v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromfedricci committed Apr 9, 2024
1 parent c96347a commit a4dcce7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

[Unreleased]: https://github.com/pedromfedricci/mcslock/compare/v0.1.2..HEAD
[Unreleased]: https://github.com/pedromfedricci/mcslock/compare/v0.2.0..HEAD

## [0.2.0] - 2024-04-09

### Added

- **BREAKING**: Add new thread_local locking design ([#11]).

[#11]: https://github.com/pedromfedricci/mcslock/pull/11

### Removed

- **BREAKING**: Remove MutexNode reexports ([#12]).

[#12]: https://github.com/pedromfedricci/mcslock/pull/12

## [0.1.2] - 2024-03-24

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ An implementation of Mellor-Crummey and Scott contention-free
spin-lock for mutual exclusion, referred to as MCS lock.
"""
name = "mcslock"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
# NOTE: Rust 1.65 is required for GATs and let-else statements.
rust-version = "1.65.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Or add a entry under the `[dependencies]` section in your `Cargo.toml`:

[dependencies]
# Available features: `yield`, `barging`, `thread_local` and `lock_api`.
mcslock = { version = "0.1", features = ["barging"] }
mcslock = { version = "0.2", features = ["barging"] }
```

## Documentation
Expand Down

0 comments on commit a4dcce7

Please sign in to comment.