Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Sep 5, 2021
1 parent 6eed9af commit ae3d995
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

No changes.

## [0.6.0 - 2021-09-05](https://github.com/stm32-rs/bxcan/releases/tag/v0.6.0)

### New Features

* Add `CanConfig::set_automatic_retransmit` function to enable or disable automatic frame retransmission ([#42]).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bxcan"
version = "0.5.1"
version = "0.6.0"
authors = [
"Jonas Schievink <[email protected]>",
"Timo Kröger <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add an entry to your `Cargo.toml`:

```toml
[dependencies]
bxcan = "0.5.1"
bxcan = "0.6.0"
```

Check the [API Documentation](https://docs.rs/bxcan/) for how to use the
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.1")]
#![doc(html_root_url = "https://docs.rs/bxcan/0.6.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]
Expand Down

0 comments on commit ae3d995

Please sign in to comment.