From 5f2ba86c102ae63886352d31e5c91e089604c0a7 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 27 Mar 2022 12:00:57 +0000 Subject: feat(cargo): bump version --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8347114..c895da3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "windmark" -version = "0.1.2" +version = "0.1.3" authors = ["Fuwn "] edition = "2021" description = "An elegant and highly performant async Gemini server framework" diff --git a/README.md b/README.md index 0472030..0ff4a6b 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.2" +windmark = "0.1.3" tokio = { version = "0.2.4", features = ["full"] } # If you would like to use the built-in logger (recommended) -# windmark = { version = "0.1.2", features = ["logger"] } +# windmark = { version = "0.1.3", features = ["logger"] } ``` ### Implement a Windmark server diff --git a/src/lib.rs b/src/lib.rs index 4e8592a..dc1012a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -32,11 +32,11 @@ //! # Cargo.toml //! //! [dependencies] -//! windmark = "0.1.2" +//! windmark = "0.1.3" //! tokio = { version = "0.2.4", features = ["full"] } //! //! # If you would like to use the built-in logger (recommended) -//! # windmark = { version = "0.1.2", features = ["logger"] } +//! # windmark = { version = "0.1.3", features = ["logger"] } //! ``` //! //! ### Implement a Windmark server @@ -255,7 +255,7 @@ impl Router { /// # Examples /// /// ```rust - /// windmark::Router::new().run(); + /// windmark::Router::new().run(); /// ``` /// /// # Panics -- cgit v1.2.3