Skip to content

Commit

Permalink
Bump async-time-mock-tokio version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FSMaxB committed Jan 12, 2025
1 parent 419dc28 commit eb13892
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
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.

11 changes: 11 additions & 0 deletions async-time-mock-tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# Changelog for async-time-mock-tokio

# 0.1.2

* Increase minimum rust version to `1.70`
* Add `MockableClock::system_time` to get the current `SystemTime`.
See [#82](https://github.com/communityvi/async-time-mock/issues/82).
* Turn `MockableClock::sleep` from async functions into functions returning an explicit `Sleep` future type.
See [#81](https://github.com/communityvi/async-time-mock/issues/81).

# 0.1.1

* Change async-time-mock-core dependency definition to `0.1`

# 0.1.0

* Implement `elapsed` method on `Instant`

# 0.0.1

* First release of `async-time-mock-tokio`
4 changes: 2 additions & 2 deletions async-time-mock-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "async-time-mock-tokio"
description = "Mockable time for use in async runtimes (tokio compatibility)."
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = [
Expand All @@ -12,7 +12,7 @@ rust-version = "1.70"


[dependencies]
async-time-mock-core = { version = "0.1", path = "../async-time-mock-core", optional = true }
async-time-mock-core = { version = "0.1.4", path = "../async-time-mock-core", optional = true }
futures-core = { version = "0.3", optional = true }
pin-project = "1"
tokio = { version = "1", features = ["time"] }
Expand Down

0 comments on commit eb13892

Please sign in to comment.