Skip to content

Commit

Permalink
Released 0.2.0 and updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Amjad50 committed Feb 22, 2024
1 parent 28bd7f7 commit 9f47e8e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2024-02-22

### Added
- feature `alloc` that contains the old implementation that relies on allocation.
- module `static_mem` that implements the channel without allocation, but known compile time size.
- `Sender::new` to create sender, and `Sender::new_receiver` to a receiver from the sender that will
start receiving from the next message of the sender/s.

### Changed
- The `alloc` (previous) implementation doesn't need to specify size at compile time.
- Needed to bump MSRV to `1.61.0` to support some `const fn` features.

## [0.1.1] - 2024-02-22

### Fixed
Expand All @@ -20,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Tests and benches.
- Documentation.

[unreleased]: https://github.com/Amjad50/blinkcast/compare/v0.1.1...HEAD
[unreleased]: https://github.com/Amjad50/blinkcast/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/Amjad50/blinkcast/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/Amjad50/blinkcast/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/Amjad50/blinkcast/compare/a9761ca3c16404ffd8c00efe0ed26fa377bb444d...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 = "blinkcast"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
authors = ["Amjad Alsharafi <me@amjad.alsharafi.dev>"]
license = "MIT"
Expand Down

0 comments on commit 9f47e8e

Please sign in to comment.