aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-31 03:04:05 +0000
committerFuwn <[email protected]>2022-03-31 03:04:05 +0000
commitf1aa8c06940523a3965909fa0013294061fec973 (patch)
treed6246e1194e41c496dfb9ff20e5976be8edec142
parentfeat(features): auto-deduce-mime (diff)
downloadwindmark-0.1.6.tar.xz
windmark-0.1.6.zip
feat(cargo): bump version0.1.6
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
-rw-r--r--src/lib.rs4
3 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 893dadf..cec0c61 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "windmark"
-version = "0.1.5"
+version = "0.1.6"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "An elegant and highly performant async Gemini server framework"
diff --git a/README.md b/README.md
index c9e953d..575fb82 100644
--- a/README.md
+++ b/README.md
@@ -14,11 +14,11 @@ Windmark is an elegant and highly performant, async Gemini server framework.
# Cargo.toml
[dependencies]
-windmark = "0.1.5"
+windmark = "0.1.6"
tokio = { version = "0.2.4", features = ["full"] }
# If you would like to use the built-in logger (recommended)
-# windmark = { version = "0.1.5", features = ["logger"] }
+# windmark = { version = "0.1.6", features = ["logger"] }
```
### Implement a Windmark server
diff --git a/src/lib.rs b/src/lib.rs
index cb1962e..2fb7e6d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -32,11 +32,11 @@
//! # Cargo.toml
//!
//! [dependencies]
-//! windmark = "0.1.5"
+//! windmark = "0.1.6"
//! tokio = { version = "0.2.4", features = ["full"] }
//!
//! # If you would like to use the built-in logger (recommended)
-//! # windmark = { version = "0.1.5", features = ["logger"] }
+//! # windmark = { version = "0.1.6", features = ["logger"] }
//! ```
//!
//! ### Implement a Windmark server