From 509d16be5d8175cb419c79d4f6b3c26c38f1ef89 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Mon, 28 Dec 2020 15:12:10 +0100 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbeeb24..a41c2c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +No changes. + +## [0.3.0 - 2020-12-28](https://github.com/jonas-schievink/bxcan/releases/tag/v0.3.0) + ### New Features * Configurable mask for masked filters. diff --git a/Cargo.toml b/Cargo.toml index e5cef3c..4685dc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bxcan" -version = "0.2.3" +version = "0.3.0" authors = [ "Jonas Schievink ", "Timo Kröger ", diff --git a/README.md b/README.md index fb35a70..cafb035 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add an entry to your `Cargo.toml`: ```toml [dependencies] -bxcan = "0.2.3" +bxcan = "0.3.0" ``` Check the [API Documentation](https://docs.rs/bxcan/) for how to use the diff --git a/src/lib.rs b/src/lib.rs index ca0007d..07c1e0b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! Caveats: //! - Only RX FIFO 0 is supported, FIFO 1 will not be used. -#![doc(html_root_url = "https://docs.rs/bxcan/0.2.3")] +#![doc(html_root_url = "https://docs.rs/bxcan/0.3.0")] // 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]