summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml7
-rw-r--r--benoit-cli/Cargo.toml14
-rw-r--r--benoit/Cargo.toml16
-rw-r--r--benoit/src/lib.rs2
5 files changed, 29 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6eec048..470441e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 3.0.1
+
+* Set Cargo metadata
+
# 3.0.0
* Bump major version
diff --git a/Cargo.toml b/Cargo.toml
index ca7e048..194453a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,8 +7,11 @@ members = [
resolver = "2"
[workspace.package]
-version = "3.0.0"
-authors = ["Gabriel Bjørnager Jensen"]
+version = "3.0.1"
+authors = ["Gabriel Bjørnager Jensen"]
+readme = "README.md"
+homepage = "https://mandelbrot.dk/benoit"
+repository = "https://mandelbrot.dk/benoit"
[workspace.lints.clippy]
as_ptr_cast_mut = "deny"
diff --git a/benoit-cli/Cargo.toml b/benoit-cli/Cargo.toml
index 8c92f6c..7f00df2 100644
--- a/benoit-cli/Cargo.toml
+++ b/benoit-cli/Cargo.toml
@@ -1,10 +1,14 @@
[package]
-name = "benoit-cli"
-edition = "2021"
-license = "GPL-3.0-or-later"
+name = "benoit-cli"
+edition = "2021"
+license = "GPL-3.0-or-later"
+description = "Multithreaded Mandelbrot renderer, CLI front-end."
-version.workspace = true
-authors.workspace = true
+version.workspace = true
+authors.workspace = true
+homepage.workspace = true
+repository.workspace = true
+readme.workspace = true
[features]
notify = ["notify-rust"]
diff --git a/benoit/Cargo.toml b/benoit/Cargo.toml
index ef5503d..0b64505 100644
--- a/benoit/Cargo.toml
+++ b/benoit/Cargo.toml
@@ -1,11 +1,15 @@
[package]
-name = "benoit"
-edition = "2021"
-license = "AGPL-3.0-or-later"
-description = "Multithreaded Mandelbrot renderer."
+name = "benoit"
+edition = "2021"
+license = "AGPL-3.0-or-later"
+description = "Multithreaded Mandelbrot renderer."
+documentation = "https://docs.rs/benoit"
-version.workspace = true
-authors.workspace = true
+version.workspace = true
+authors.workspace = true
+homepage.workspace = true
+repository.workspace = true
+readme.workspace = true
[features]
wgpu-colour = ["wgpu"]
diff --git a/benoit/src/lib.rs b/benoit/src/lib.rs
index c8aa098..4adc509 100644
--- a/benoit/src/lib.rs
+++ b/benoit/src/lib.rs
@@ -46,7 +46,7 @@ pub mod stopwatch;
/// The version number of benoit, currently being `3.0.0`.
///
/// The version numbers of `benoit-cli` and `benoit-gui` match this value.
-pub const VERSION: (u32, u32, u32) = (0x3, 0x0, 0x0); // After 76 days of work.
+pub const VERSION: (u32, u32, u32) = (0x3, 0x0, 0x1);
/// The precision used for arbitrary precision computations, in bits.
///