Skip to content

Commit

Permalink
Split changelogs and update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
FSMaxB committed Jan 22, 2024
1 parent e9e79c4 commit 197359f
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 9 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog

## 0.1.0
* Implement `elapsed` methods on all `Instant` types
See the changelogs of the different packages:
* [async-time-mock-core](./async-time-mock-core/CHANGELOG.md)
* [async-time-mock-async-std](./async-time-mock-async-std/CHANGELOG.md)
* [async-time-mock-smol](./async-time-mock-smol/CHANGELOG.md)
* [async-time-mock-tokio](./async-time-mock-tokio/CHANGELOG.md)
6 changes: 3 additions & 3 deletions Cargo.lock

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

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

# 0.1.1
* Update `async-time-mock-core` to `0.1.2`

# 0.1.0
* Implement `elapsed` on `Instant`

# 0.0.1
* First release of `async-time-mock-async-std`
2 changes: 1 addition & 1 deletion async-time-mock-async-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "async-time-mock-async-std"
description = "Mockable time for use in async runtimes (async-std compatibility)."
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT"
authors = [
Expand Down
15 changes: 15 additions & 0 deletions async-time-mock-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog for async-time-mock-core

# 0.1.2
* Update `event_listener` to `4`

# 0.1.1
* Update `async-lock` to `3`
* Update `event-listener` to `3`
* Update `futures-lite` to `2`

# 0.1.0
* Implement `elapsed` on `Instant`

# 0.0.1
* First release of `async-time-mock-core`
2 changes: 1 addition & 1 deletion async-time-mock-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "async-time-mock-core"
description = "Mockable time for use in async runtimes (core package)."
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = [
Expand Down
13 changes: 13 additions & 0 deletions async-time-mock-smol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog for async-time-mock-smol

# 0.2.0
* Update `smol` to `2` (NOTE: We're not depending on that directly, see the dependencies below)
* Update `event_listener` to `4`
* Update `async-io` to `2`
* Update `async-time-mock-core` to `0.1.2`

# 0.1.0
* Implement `elapsed` on `Instant`

# 0.0.1
* First release of `async-time-mock-smol`
2 changes: 1 addition & 1 deletion async-time-mock-smol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "async-time-mock-smol"
description = "Mockable time for use in async runtimes (smol compatibility)."
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = [
Expand Down
10 changes: 10 additions & 0 deletions async-time-mock-tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog for async-time-mock-tokio

# 0.1.1
* Update async-time-mock-core to `0.1.2`

# 0.1.0
* Implement `elapsed` method on `Instant`

# 0.0.1
* First release of `async-time-mock-tokio`
2 changes: 1 addition & 1 deletion async-time-mock-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rust-version = "1.64"


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

0 comments on commit 197359f

Please sign in to comment.