Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbornholt committed Sep 21, 2021
1 parent a63064a commit f49b183
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.0.7 (September 21, 2021)

* Fix a number of issues in support for async tasks (#50, #51, #52, #54)
* Improve error messages when using Shuttle primitives outside a Shuttle test (#42)
* Add support for thread local storage (the `thread_local!` macro) (#43, #53)
* Add support for `Once` cells (#49)
* Simplify some dependencies to improve build times (#55)
* Move `context_switches` and `my_clock` functions into a new `current` module (#56)

# 0.0.6 (July 8, 2021)

* Add support for `std::sync::atomic` (#33)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle"
version = "0.0.6"
version = "0.0.7"
edition = "2018"
license = "Apache-2.0"
description = "A library for testing concurrent Rust code"
Expand All @@ -19,7 +19,6 @@ rand_pcg = "~0.2.1"
scoped-tls = "~1.0.0"
smallvec = "~1.6.1"
tracing = { version = "~0.1.21", default-features = false, features = ["std"] }
tracing-subscriber = "~0.2.12"
varmint = "~0.1.3"

[dev-dependencies]
Expand All @@ -29,6 +28,7 @@ proptest = "~0.10.1"
regex = "~1.3.9"
tempfile = "~3.2.0"
test-env-log = { version = "~0.2.2", default-features = false, features = ["trace"] }
tracing-subscriber = "~0.2.12"

[lib]
bench = false
Expand Down

0 comments on commit f49b183

Please sign in to comment.