summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
-rw-r--r--source/benoit/benoit.rs2
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
diff --git a/Cargo.toml b/Cargo.toml
index 2a9d20a..2fc6337 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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."
diff --git a/README.md b/README.md
index 48f2ae7..83e70b0 100644
--- a/README.md
+++ b/README.md
@@ -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;