Skip to content

Commit

Permalink
feat: re-export TimeoutError
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Oct 20, 2023
1 parent bec4e03 commit cf8d3a7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ This changelog follows the patterns described here: <https://keepachangelog.com/

Subheadings to categorize changes are `added, changed, deprecated, removed, fixed, security`.

## 1.2.0

### added

- exported `TimeoutError`

## 1.1.0

### added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT/Apache-2.0"
repository = "https://github.com/vectorgameexperts/bevy-async-task"
authors = ["Spencer C. Imbleau"]
keywords = ["gamedev", "async"]
version = "1.1.0"
version = "1.2.0"
edition = "2021"

[lib]
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ mod receiver;
mod task_pool;
mod task_runner;

// Re-exports
pub use async_std::future::TimeoutError;

pub use receiver::AsyncReceiver;
pub use task_pool::AsyncTaskPool;
pub use task_runner::AsyncTaskRunner;
Expand Down

0 comments on commit cf8d3a7

Please sign in to comment.