Skip to content

Commit

Permalink
Bump version: v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teruyamato0731 authored and github-actions[bot] committed May 17, 2024
1 parent 0e28442 commit 1610a37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
//! Or add the following to your Cargo.toml:
//! ```toml
//! [dependencies]
//! advanced-pid = "0.2.1"
//! advanced-pid = "0.2.2"
//! ```
//!
//! ## No-std support
//! This library is designed to be `no_std` compatible.
//! 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
Expand All @@ -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
Expand Down

0 comments on commit 1610a37

Please sign in to comment.