Skip to content

Commit

Permalink
Prepare for 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bertptrs committed Apr 17, 2023
1 parent 90e6a53 commit 50b9489
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2023-04-17

### Changed

- Use dynamic dispatch internally to save on code gen. External API unchanged.
Expand All @@ -25,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/bertptrs/beul/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/bertptrs/beul/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/bertptrs/beul/compare/v0.1.1...v1.0.0
[0.1.1]: https://github.com/bertptrs/beul/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/bertptrs/beul/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "beul"
version = "0.1.1"
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "It executes futures"
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Beul is a minimalistic futures executor. No dependencies, no unsafe rust. It simply executes
futures.

"Beul" is Dutch for executioner. It's a pun.

## Usage

Simply call `execute` with your future:
Expand All @@ -14,7 +16,8 @@ beul::execute(async {});
### Backwards compatibility

This crate requires at least Rust 1.68, due to its reliance on [std::pin::pin!]. Increases in this
version will be considered breaking changes. This crate follows semantic versioning.
version will be considered breaking changes and will be avoided if possible. The minimum supported
Rust version will only be bumped in major or minor versions. This crate follows semantic versioning.

### Limitations

Expand Down

0 comments on commit 50b9489

Please sign in to comment.