summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml2
-rw-r--r--bzipper/Cargo.toml4
-rw-r--r--bzipper_benchmarks/Cargo.toml2
-rw-r--r--bzipper_macros/Cargo.toml2
5 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 63d84ff..7ceeca7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@
This is the changelog of bzipper.
See `README.md` for more information.
+## 0.8.1
+
+* Update package metadata
+
## 0.8.0
* Rename `FixedString` to `SizedStr`
diff --git a/Cargo.toml b/Cargo.toml
index e87124c..b183495 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,7 @@ readme = "README.md"
homepage = "https://achernar.dk/index.php?p=bzipper"
repository = "https://mandelbrot.dk/bzipper/"
license = "LGPL-3.0-or-later"
-keywords = ["api", "binary-encoding", "client", "encoding", "io", "network", "no-std", "protocol", "server"]
+keywords = ["api", "encoding", "io", "network", "no-std"]
categories = ["encoding", "network-programming", "parsing"]
[workspace.lints.clippy]
diff --git a/bzipper/Cargo.toml b/bzipper/Cargo.toml
index e2b502c..6f8609b 100644
--- a/bzipper/Cargo.toml
+++ b/bzipper/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bzipper"
-version = "0.8.0"
+version = "0.8.1"
edition = "2021"
rust-version = "1.83"
documentation = "https://docs.rs/bzipper/"
@@ -24,7 +24,7 @@ alloc = []
std = []
[dependencies]
-bzipper_macros = { path = "../bzipper_macros", version = "0.8.0" }
+bzipper_macros = { path = "../bzipper_macros", version = "0.8.1" }
[lints]
workspace = true
diff --git a/bzipper_benchmarks/Cargo.toml b/bzipper_benchmarks/Cargo.toml
index f866db0..2bee98a 100644
--- a/bzipper_benchmarks/Cargo.toml
+++ b/bzipper_benchmarks/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bzipper_benchmarks"
-version = "0.8.0"
+version = "0.8.1"
edition = "2021"
description = "bZipper benchmarks."
diff --git a/bzipper_macros/Cargo.toml b/bzipper_macros/Cargo.toml
index 9b00254..e87215a 100644
--- a/bzipper_macros/Cargo.toml
+++ b/bzipper_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bzipper_macros"
-version = "0.8.0"
+version = "0.8.1"
edition = "2021"
documentation = "https://docs.rs/bzipper_macros/"