Skip to content

Commit 66c0d21

Browse files
committed
Release 0.7.0
1 parent 73cd174 commit 66c0d21

File tree

10 files changed

+15
-10
lines changed

10 files changed

+15
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
No changes.
11+
12+
## [v0.7.0] 2021-06-18
13+
1014
### Added
1115

1216
- Make `Clocks` `ppre1()` and `ppre2()` methods public, to get the current
@@ -398,6 +402,7 @@ let clocks = rcc
398402
[#2]: https://github.com/stm32-rs/stm32f3xx-hal/pull/2
399403

400404
<!-- cargo-release: latest tag -->
405+
[v0.7.0]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.7.0
401406
[v0.6.1]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.6.1
402407
[v0.6.0]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.6.0
403408
[v0.5.0]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.5.0

Cargo.toml

+1-1
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.6.1"
16+
version = "0.7.0"
1717
exclude = [
1818
"codegen",
1919
".markdownlint.yml"

src/adc.rs

+1-1
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.6.1/examples/adc.rs
10+
//! [examples/adc.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/adc.rs
1111
1212
use crate::{
1313
gpio::Analog,

src/can.rs

+1-1
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.6.1/examples/can.rs
12+
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/can.rs
1313
1414
pub use embedded_hal_can::{self, Filter, Frame, Id, Receiver, Transmitter};
1515

src/dma.rs

+1-1
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.6.1/examples/serial_dma.rs
9+
//! [examples/serial_dma.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/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

+2-2
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.6.1/examples/toggle.rs
61+
//! [examples/toggle.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/toggle.rs
6262
6363
use core::{convert::Infallible, marker::PhantomData};
6464

@@ -286,7 +286,7 @@ impl<Gpio, Index, Mode> crate::private::Sealed for Pin<Gpio, Index, Mode> {}
286286
///
287287
/// See [examples/gpio_erased.rs] as an example.
288288
///
289-
/// [examples/gpio_erased.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.6.0/examples/gpio_erased.rs
289+
/// [examples/gpio_erased.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/gpio_erased.rs
290290
pub type PXx<Mode> = Pin<Gpiox, Ux, Mode>;
291291

292292
/// Modify specific index of array-like register

src/i2c.rs

+1-1
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.6.1/examples/i2c_scanner.rs
7+
//! [examples/i2c_scanner.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/i2c_scanner.rs
88
99
use core::{convert::TryFrom, ops::Deref};
1010

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
4646
For more information, see the [README][].
4747
48-
[README]: https://github.com/stm32-rs/stm32f3xx-hal/blob/master/README.md#selecting-the-right-chip
48+
[README]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/README.md#selecting-the-right-chip
4949
5050
### `ld`
5151

src/usb.rs

+1-1
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.6.1/examples/usb_serial.rs
9+
//! [examples/usb_serial.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/usb_serial.rs
1010
1111
use crate::pac::{RCC, USB};
1212
use stm32_usbd::UsbPeripheral;

src/watchdog.rs

+1-1
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.6.1/examples/can.rs
7+
//! [examples/can.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.7.0/examples/can.rs
88
99
use embedded_time::fixed_point::FixedPoint;
1010

0 commit comments

Comments
 (0)