Skip to content

Commit ee70235

Browse files
committed
Release 0.8.1
1 parent 5f3f4ad commit ee70235

File tree

12 files changed

+18
-13
lines changed

12 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414

1515
## Unreleased
1616

17+
No changes.
18+
19+
## [v0.8.1] - 2021-10-27
20+
1721
### Fixed
1822

1923
- ADC Channel SMP Register mismatch. ([#291])
@@ -571,6 +575,7 @@ let clocks = rcc
571575
[#2]: https://github.com/stm32-rs/stm32f3xx-hal/pull/2
572576

573577
<!-- cargo-release: latest tag -->
578+
[v0.8.1]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.8.1
574579
[v0.8.0]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.8.0
575580
[v0.7.0]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.7.0
576581
[v0.6.1]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.6.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "stm32f3xx-hal"
1313
readme = "README.md"
1414
repository = "https://github.com/stm32-rs/stm32f3xx-hal"
1515
documentation = "https://docs.rs/stm32f3xx-hal"
16-
version = "0.8.0"
16+
version = "0.8.1"
1717
exclude = [
1818
"codegen",
1919
".markdownlint.yml"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ cortex-m-rt = { version = "0.6.13", features = ["device"] }
5757
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
5858
panic-halt = "0.2.0"
5959
# Replace stm32f303xc with your target chip, see next section for more info
60-
stm32f3xx-hal = { version = "0.8.0", features = ["ld", "rt", "stm32f303xc"] }
60+
stm32f3xx-hal = { version = "0.8.1", features = ["ld", "rt", "stm32f303xc"] }
6161
```
6262

6363
We also need to tell Rust about target architecture and how to link our

src/adc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! It can be built for the STM32F3Discovery running
88
//! `cargo build --example adc --features=stm32f303xc`
99
//!
10-
//! [examples/adc.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/adc.rs
10+
//! [examples/adc.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/adc.rs
1111
1212
use cortex_m::asm;
1313
use embedded_hal::adc::{Channel, OneShot};

src/can.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! A usage example of the can peripheral can be found at [examples/can.rs]
1111
//!
12-
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/can.rs
12+
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/can.rs
1313
1414
use crate::gpio::{gpioa, gpiob};
1515
use crate::gpio::{PushPull, AF7, AF9};

src/dma.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! An example how to use DMA for serial, can be found at [examples/serial_dma.rs]
88
//!
9-
//! [examples/serial_dma.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/serial_dma.rs
9+
//! [examples/serial_dma.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/serial_dma.rs
1010
1111
// To learn about most of the ideas implemented here, check out the DMA section
1212
// of the Embedonomicon: https://docs.rust-embedded.org/embedonomicon/dma.html

src/gpio.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
//!
5959
//! [InputPin]: embedded_hal::digital::v2::InputPin
6060
//! [OutputPin]: embedded_hal::digital::v2::OutputPin
61-
//! [examples/toggle.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/toggle.rs
61+
//! [examples/toggle.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/toggle.rs
6262
6363
use core::{convert::Infallible, marker::PhantomData};
6464

@@ -332,7 +332,7 @@ impl<Gpio, Index, Mode> crate::private::Sealed for Pin<Gpio, Index, Mode> {}
332332
///
333333
/// See [examples/gpio_erased.rs] as an example.
334334
///
335-
/// [examples/gpio_erased.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/gpio_erased.rs
335+
/// [examples/gpio_erased.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/gpio_erased.rs
336336
pub type PXx<Mode> = Pin<Gpiox, Ux, Mode>;
337337

338338
impl<Gpio, Mode, const X: u8> Pin<Gpio, U<X>, Mode> {

src/i2c.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! A usage example of the i2c peripheral can be found at [examples/i2c_scanner.rs]
66
//!
7-
//! [examples/i2c_scanner.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/i2c_scanner.rs
7+
//! [examples/i2c_scanner.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/i2c_scanner.rs
88
99
use core::{convert::TryFrom, ops::Deref};
1010

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
5858
For more information, see the [README][].
5959
60-
[README]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/README.md#selecting-the-right-chip
60+
[README]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/README.md#selecting-the-right-chip
6161
6262
### `ld`
6363

src/spi.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! A usage example of the can peripheral can be found at [examples/spi.rs]
66
//!
7-
//! [examples/spi.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/spi.rs
7+
//! [examples/spi.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/spi.rs
88
99
use core::{fmt, marker::PhantomData, ops::Deref, ptr};
1010

@@ -194,7 +194,7 @@ impl<SPI, Sck, Miso, Mosi, WORD> Spi<SPI, (Sck, Miso, Mosi), WORD> {
194194
///
195195
/// ```
196196
///
197-
/// To get a better example, look [here](https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/spi.rs).
197+
/// To get a better example, look [here](https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/spi.rs).
198198
///
199199
// TODO(Sh3Rm4n): See alternative modes provided besides FullDuplex (as listed in Stm32CubeMx).
200200
pub fn new<Config>(

src/usb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! See [examples/usb_serial.rs] for a usage example.
88
//!
9-
//! [examples/usb_serial.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/usb_serial.rs
9+
//! [examples/usb_serial.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/usb_serial.rs
1010
1111
use core::fmt;
1212

src/watchdog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! A usage example of the watchdog can be found at [examples/can.rs]
66
//!
7-
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.0/examples/can.rs
7+
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.8.1/examples/can.rs
88
99
use core::fmt;
1010
use embedded_time::fixed_point::FixedPoint;

0 commit comments

Comments
 (0)