From 1610a37f08227df60b54e1ed5feafd8c8a05673e Mon Sep 17 00:00:00 2001 From: teruyamato0731 Date: Fri, 17 May 2024 06:31:08 +0000 Subject: [PATCH] Bump version: v0.2.2 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f36c92d..f8928d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "advanced-pid" -version = "0.2.1" +version = "0.2.2" authors = ["teruyamato0731"] edition = "2021" description = "An advanced PID control library implemented in Rust" diff --git a/README.md b/README.md index 553179e..02f2fe1 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ cargo add advanced-pid Or add the following to your Cargo.toml: ```toml [dependencies] -advanced-pid = "0.2.1" +advanced-pid = "0.2.2" ``` ## Quick Start diff --git a/src/lib.rs b/src/lib.rs index df32e0e..ca9eece 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! Or add the following to your Cargo.toml: //! ```toml //! [dependencies] -//! advanced-pid = "0.2.1" +//! advanced-pid = "0.2.2" //! ``` //! //! ## No-std support @@ -33,7 +33,7 @@ //! To use this library in a `no_std` environment, disable the default features in your `Cargo.toml`: //! ```toml //! [dependencies] -//! advanced-pid = { version = "0.2.1", default-features = false } +//! advanced-pid = { version = "0.2.2", default-features = false } //! ``` //! //! ## Floating point precision @@ -42,7 +42,7 @@ //! To use `f64` precision, enable the `f64` feature in your `Cargo.toml`: //! ```toml //! [dependencies] -//! advanced-pid = { version = "0.2.1", features = ["f64"] } +//! advanced-pid = { version = "0.2.2", features = ["f64"] } //! ``` //! //! ## Examples