diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | source/benoit/benoit.rs | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a700a..4c6f15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.5.1 + +* Fix readme + # 2.5.0 * Make fill_palettes safe @@ -1,6 +1,6 @@ [package] name = "benoit" -version = "2.5.0" +version = "2.5.1" authors = ["Gabriel Bjørnager Jensen"] edition = "2021" description = "Multithreaded Mandelbrot renderer with support for PNG and WebP encoding." @@ -12,7 +12,7 @@ benoit [path] Benoit makes use of the following external libraries: -* [ctor](https://crates.io/crates/ctor) and [enum-iterator](https://crates.io/crates/enum-iterator) for pre-calculating palettes +* [enum-iterator](https://crates.io/crates/enum-iterator) for pre-calculating palettes * [PNG](https://crates.io/crates/png) for encoding PNG images * [Rayon](https://crates.io/crates/rayon) for threadpooling * [Rug](https://crates.io/crates/rug) for multi‐precision diff --git a/source/benoit/benoit.rs b/source/benoit/benoit.rs index 1e70ff8..a9b7b42 100644 --- a/source/benoit/benoit.rs +++ b/source/benoit/benoit.rs @@ -36,7 +36,7 @@ pub mod video; pub const VERSION: (u32, u32, u32) = ( 0x2, // Major 0x5, // Minor - 0x0, // Patch + 0x1, // Patch ); pub const PRECISION: u32 = 0x80; |