Skip to content

Commit 199e62b

Browse files
Merge pull request #94 from stm32-rs/release-v0.6.0
Release `v0.6.0`
2 parents 1a4da0a + 04e7772 commit 199e62b

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "stm32-eth"
44
description = "Embedded Rust Ethernet driver for the STM32 MCU series"
55
license = "Apache-2.0"
66
authors = ["Astro <astro@spaceboyz.net>", "Johannes Draaijer <jcdra1@gmail.com>"]
7-
version = "0.5.2"
7+
version = "0.6.0"
88
keywords = ["ethernet", "eth", "stm32", "stm32f4", "stm32f7"]
99
repository = "https://github.com/stm32-rs/stm32-eth"
1010
documentation = "https://docs.rs/stm32-eth/"
@@ -86,7 +86,7 @@ features = [ "thumbv7-backend" ]
8686

8787
[dev-dependencies.rtic-sync]
8888
package = "rtic-sync"
89-
version = "1.0"
89+
version = "1.3"
9090

9191
# This isn't an actual example. It just exists so we can easily
9292
# test the common items :)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Pull requests are welcome :)
1313
Add one of the following to the `[dependencies]` section in your `Cargo.toml` (with the correct MCU specified):
1414

1515
```toml
16-
stm32-eth = { version = "0.4.1", features = ["stm32f429"] } # For stm32f4xx-like MCUs
17-
stm32-eth = { version = "0.4.1", features = ["stm32f767"] } # For stm32f7xx-like MCUs
18-
stm32-eth = { version = "0.4.1", features = ["stm32f107"] } # For stm32f107
16+
stm32-eth = { version = "0.6.0", features = ["stm32f429"] } # For stm32f4xx-like MCUs
17+
stm32-eth = { version = "0.6.0", features = ["stm32f767"] } # For stm32f7xx-like MCUs
18+
stm32-eth = { version = "0.6.0", features = ["stm32f107"] } # For stm32f107
1919
```
2020

2121
`stm32_eth` re-exports the underlying HAL as `stm32_eth::hal`.

examples/async-rtic-timestamp.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![no_std]
22
#![no_main]
3-
#![feature(type_alias_impl_trait)]
43

54
//! For build and run instructions, see README.md
65
//!

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ pub(crate) mod peripherals;
4242
#[cfg(feature = "ptp")]
4343
pub mod ptp;
4444

45-
#[cfg(feature = "smoltcp-phy")]
46-
pub use smoltcp;
47-
4845
#[cfg(feature = "device-selected")]
4946
use {
5047
dma::{EthernetDMA, RxRingEntry, TxRingEntry},

0 commit comments

Comments
 (0)