diff --git a/CHANGELOG.md b/CHANGELOG.md index c3b5a21..ec758cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +No changes. + +## [0.6.2 - 2021-11-15](https://github.com/stm32-rs/bxcan/releases/tag/v0.6.2) + ### Fixes * Enter initialization mode when constructing a `CanBuilder` ([#49]). diff --git a/Cargo.toml b/Cargo.toml index c609e7c..30f9a98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bxcan" -version = "0.6.1" +version = "0.6.2" authors = [ "Jonas Schievink ", "Timo Kröger ", diff --git a/README.md b/README.md index 3a72f95..8e0ac29 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add an entry to your `Cargo.toml`: ```toml [dependencies] -bxcan = "0.6.1" +bxcan = "0.6.2" ``` Check the [API Documentation](https://docs.rs/bxcan/) for how to use the diff --git a/src/lib.rs b/src/lib.rs index f0d0b7d..390bf72 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,7 +31,7 @@ //! [`embedded-can`]: https://docs.rs/embedded-can //! [`defmt`]: https://docs.rs/defmt -#![doc(html_root_url = "https://docs.rs/bxcan/0.6.1")] +#![doc(html_root_url = "https://docs.rs/bxcan/0.6.2")] // Deny a few warnings in doctests, since rustdoc `allow`s many warnings by default #![doc(test(attr(deny(unused_imports, unused_must_use))))] #![no_std]