Skip to content

Commit 3f6f470

Browse files
committed
Bump crate version to 0.8.7
Signed-off-by: Anjan Roy <hello@itzmeanjan.in>
1 parent 7424106 commit 3f6f470

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rlnc"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
edition = "2024"
55
resolver = "3"
66
rust-version = "1.89.0"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ To use `rlnc` library crate in your Rust project, add it as a dependency in your
165165

166166
```toml
167167
[dependencies]
168-
rlnc = "=0.8.6" # On x86_64 and aarch64 targets, it offers fast encoding, recoding and decoding, using SIMD intrinsics.
168+
rlnc = "=0.8.7" # On x86_64 and aarch64 targets, it offers fast encoding, recoding and decoding, using SIMD intrinsics.
169169
# or
170-
rlnc = { version = "=0.8.6", features = "parallel" } # Uses `rayon`-based data-parallelism for fast encoding and recoding. Note, this feature, doesn't yet parallelize RLNC decoding.
170+
rlnc = { version = "=0.8.7", features = "parallel" } # Uses `rayon`-based data-parallelism for fast encoding and recoding. Note, this feature, doesn't yet parallelize RLNC decoding.
171171

172172
rand = { version = "=0.9.2" } # Required for random number generation
173173
```

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
//!
116116
//! ```toml
117117
//! [dependencies]
118-
//! rlnc = "=0.8.6" # On x86_64 and aarch64 targets, it offers fast encoding, recoding and decoding, using SIMD intrinsics.
118+
//! rlnc = "=0.8.7" # On x86_64 and aarch64 targets, it offers fast encoding, recoding and decoding, using SIMD intrinsics.
119119
//! # or
120-
//! rlnc = { version = "=0.8.6", features = "parallel" } # Uses `rayon`-based data-parallelism for fast encoding/ recoding. Decoding is not yet parallelized.
120+
//! rlnc = { version = "=0.8.7", features = "parallel" } # Uses `rayon`-based data-parallelism for fast encoding/ recoding. Decoding is not yet parallelized.
121121
//!
122122
//! rand = { version = "=0.9.1" } # Required for random number generation
123123
//! ```

0 commit comments

Comments
 (0)