Skip to content

Commit

Permalink
release version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HippoBaro committed Feb 10, 2022
1 parent cc6e51f commit 0467176
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions glommio/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "glommio"
version = "0.6.0"
version = "0.7.0"
authors = [
"Glauber Costa <glommer@gmail.com>",
"Hippolyte Barraud <hippolyte.barraud@datadoghq.com>",
"DataDog <info@datadoghq.com>"
]
edition = "2018"
description = "Glommio is a thread-per-core framework that aims to make the task of writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans"
description = "Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans."
license = "Apache-2.0 OR MIT"
repository = "https://github.com/DataDog/glommio"
homepage = "https://github.com/DataDog/glommio"
Expand All @@ -17,7 +17,7 @@ readme = "../README.md"

[dependencies]
ahash = "0.7"
backtrace = { version = "~0.3.58" }
backtrace = { version = "0.3" }
bitflags = "1.3"
bitmaps = "3.1"
buddy-alloc = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion glommio/src/sys/uring.rs
Expand Up @@ -1891,7 +1891,7 @@ impl Reactor {
if let Some(preempt) = preempt_timer() {
self.latency_preemption_timeout_src
.set(Some(lat_ring.prepare_latency_preemption_timer(preempt)));
assert!(flush_rings!(lat_ring, main_ring)? > 0);
flush_rings!(lat_ring, main_ring)?;
}

// A Note about `need_preempt`:
Expand Down

0 comments on commit 0467176

Please sign in to comment.