From 22e13239eddf5f6695238dbde8d6121059dfeb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicholas=20Schultz-M=C3=B8ller?= Date: Sun, 14 Jul 2024 09:25:41 +0200 Subject: [PATCH] Patch version bump. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a226b56..d956ca4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "disruptor" -version = "3.0.0" +version = "3.0.1" edition = "2021" description = "Low latency inter-thread communication via a ringbuffer (inspired by the LMAX Disruptor)." license = "MIT" diff --git a/README.md b/README.md index 585500f..21c68ae 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It's heavily inspired by the brilliant Add the following to your `Cargo.toml` file: - disruptor = "3.0.0" + disruptor = "3.0.1" To read details of how to use the library, check out the documentation on [docs.rs/disruptor](https://docs.rs/disruptor).