Skip to content

Commit

Permalink
Merge pull request #10 from popzxc/release-0.3.1
Browse files Browse the repository at this point in the history
Prepare release 0.3.1
  • Loading branch information
popzxc authored Jan 21, 2022
2 parents 0290e44 + ef91f94 commit 841a27b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@

## Unreleased

## 0.3.1 (21.01.2022)

- Improved error message for the send error. [#9]

[#9]: https://github.com/popzxc/messages-rs/pull/9

## 0.3.0 (16.06.2021)

- Big performance boost:
- Actor spawning performance: +3%.
- Sending message with response: +5% (now on par with `futures` channels).
- Sending notification: **+593%**.
- Ring benchmark report: 4252826 msg/second (was 3121844 msg/second; `actix`'s
async version of ring benchmark: 3608196 msg/second).
- Ring benchmark report: 4 252 826 msg/second (was 3 121 844 msg/second; `actix`'s
async version of ring benchmark: 3 608 196 msg/second).

- Some internal improvements.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "messages"
version = "0.3.0"
version = "0.3.1"
authors = ["Igor Aleksanov <[email protected]>"]
edition = "2018"
repository = "https://github.com/popzxc/messages-rs"
Expand Down
1 change: 1 addition & 0 deletions examples/04_ring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ async fn main() -> io::Result<()> {
Ok(())
}

#[allow(clippy::redundant_closure)] // Generates false positive to `-> !` functions.
fn parse_args() -> (usize, usize) {
let mut args = env::args();

Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
unreachable_pub
)]
#![warn(clippy::pedantic)]
#![allow(clippy::clippy::module_name_repetitions)]
#![allow(clippy::module_name_repetitions)]
// Seems to be broken right now: https://github.com/rust-lang/rust-clippy/issues/8300
#![allow(clippy::no_effect_underscore_binding)]

//! `messages` is a runtime-agnostic actor library.
//!
Expand Down

0 comments on commit 841a27b

Please sign in to comment.