summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2021-07-29 23:21:33 +0200
committerDiego Barrios Romero <eldruin@gmail.com>2021-07-29 23:21:33 +0200
commitb3e1023607c13818d36b1518acaa2514412c0653 (patch)
tree7e4afca2acf60958dfd9742bf594085b462f714f
parent0f9b1d5cb7a01650ced3db5286e7dda4524ce05c (diff)
downloadads1x1x-async-b3e1023607c13818d36b1518acaa2514412c0653.tar.gz
ads1x1x-async-b3e1023607c13818d36b1518acaa2514412c0653.tar.xz
ads1x1x-async-b3e1023607c13818d36b1518acaa2514412c0653.zip
Prepare 0.2.2 release
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index be9b2fc..cbee377 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+...
+
+## [0.2.2] - 2021-07-29
+
### Added
- `DynamicOneShot` trait to ease usage of driver in functions. See `trait` example.
@@ -39,7 +43,8 @@ This is the initial release to crates.io of the feature-complete driver. There
may be some API changes in the future, in case I decide that something can be
further improved. All changes will be documented in this CHANGELOG.
-[Unreleased]: https://github.com/eldruin/ads1x1x-rs/compare/v0.2.1...HEAD
+[Unreleased]: https://github.com/eldruin/ads1x1x-rs/compare/v0.2.2...HEAD
+[0.2.2]: https://github.com/eldruin/ads1x1x-rs/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/eldruin/ads1x1x-rs/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/eldruin/ads1x1x-rs/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/eldruin/ads1x1x-rs/releases/tag/v0.1.0
diff --git a/Cargo.toml b/Cargo.toml
index 25e938d..236f783 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ads1x1x"
-version = "0.2.1" # remember to update html_root_url
+version = "0.2.2" # remember to update html_root_url
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/ads1x1x-rs"
license = "MIT OR Apache-2.0"
diff --git a/src/lib.rs b/src/lib.rs
index 8833d75..e5405d1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -202,7 +202,7 @@
//! adc.set_comparator_latching(ComparatorLatching::Latching).unwrap();
//! ```
-#![doc(html_root_url = "https://docs.rs/ads1x1x/0.2.1")]
+#![doc(html_root_url = "https://docs.rs/ads1x1x/0.2.2")]
#![deny(unsafe_code)]
#![deny(missing_docs)]
#![no_std]