summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.toml2
-rw-r--r--benoit/src/lib.rs4
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3eecf0c..3dacd08 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 3.0.3
+
+## `benoit`
+
+* Fix version docs
+
# 3.0.2
* Add per-crate readmes
diff --git a/Cargo.toml b/Cargo.toml
index 9677771..901254a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ members = [
resolver = "2"
[workspace.package]
-version = "3.0.2"
+version = "3.0.3"
authors = ["Gabriel Bjørnager Jensen"]
homepage = "https://mandelbrot.dk/benoit"
repository = "https://mandelbrot.dk/benoit"
diff --git a/benoit/src/lib.rs b/benoit/src/lib.rs
index 796e66c..299d0cc 100644
--- a/benoit/src/lib.rs
+++ b/benoit/src/lib.rs
@@ -43,10 +43,10 @@ pub mod palette;
pub mod render;
pub mod stopwatch;
-/// The version number of benoit, currently being `3.0.0`.
+/// The version number of the Benoit project.
///
/// The version numbers of `benoit-cli` and `benoit-gui` match this value.
-pub const VERSION: (u32, u32, u32) = (0x3, 0x0, 0x2);
+pub const VERSION: (u32, u32, u32) = (0x3, 0x0, 0x3);
/// The precision used for arbitrary precision computations, in bits.
///