Skip to content

Commit

Permalink
Bump version to 0.1.8 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Jun 13, 2024
1 parent 0a824d5 commit 9fa165c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]


## [0.1.8] - 2024-06-13
### Changed
- Change how loom concurrency testing is triggered. Make it an optional dependency instead of
placed behind a custom `cfg(oneshot_loom)`. This has the pros that it does not end up in the dependency
tree of `oneshot` (unless the optional feature `loom` is enabled), which makes this library
way smaller for downstream consumers. This has the downside that the crate now exposes a `loom`
feature. DOWNSTREAM USERS ARE NOT SUPPOSED TO EVER ENABLE THIS. No stability or semver
- Change how loom concurrency testing is triggered. To get rid of `loom` in the dependency tree
`oneshot` pulls in, it has in addition to being gated behind `cfg(oneshot_loom)` also been made
an optional dependency. This makes this library way smaller for downstream consumers.
This has the downside that the crate now exposes a `loom` feature.
DOWNSTREAM USERS ARE NOT SUPPOSED TO EVER ENABLE THIS. No stability or semver
guarantees exist around the `loom` feature.
This change ultimately makes no difference for any user of `oneshot` in regular usage.


## [0.1.7] - 2024-05-24
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oneshot"
version = "0.1.7"
version = "0.1.8"
authors = ["Linus Färnstrand <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit 9fa165c

Please sign in to comment.