Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
zesterer committed Oct 26, 2024
1 parent b9783e2 commit 89de240
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

# [0.4.0] - 2023-02-07

### Added

- MSRV policy

### Removed

- All `unsafe` code

### Changed

- Updated MSRV to 1.69
- `block_on` now accepts `IntoFuture` instead of `Future` (this is a backward-compatible change)

# [0.3.0] - 2023-02-07

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["macro"]

[package]
name = "pollster"
version = "0.3.0"
version = "0.4.0"
description = "Synchronously block the thread until a future completes"
categories = ["asynchronous", "concurrency"]
keywords = ["async", "minimal", "executor", "runtime", "block_on"]
Expand All @@ -18,7 +18,7 @@ readme = "README.md"
macro = ["pollster-macro"]

[dependencies]
pollster-macro = { version = "0.1", path = "macro", optional = true }
pollster-macro = { version = "0.4.0", path = "macro", optional = true }

[dev-dependencies]
futures-timer = "3.0"
Expand Down
2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pollster-macro"
version = "0.1.0"
version = "0.4.0" # Should be kept in sync with `pollster`
description = "Proc-macro crate for pollster"
categories = ["asynchronous", "concurrency"]
keywords = ["async", "minimal", "executor", "runtime", "block_on"]
Expand Down

0 comments on commit 89de240

Please sign in to comment.