Skip to content

Commit

Permalink
Merge pull request #94 from stm32-rs/release-v0.6.0
Browse files Browse the repository at this point in the history
Release `v0.6.0`
  • Loading branch information
datdenkikniet authored Mar 16, 2024
2 parents 1a4da0a + 04e7772 commit 199e62b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "stm32-eth"
description = "Embedded Rust Ethernet driver for the STM32 MCU series"
license = "Apache-2.0"
authors = ["Astro <astro@spaceboyz.net>", "Johannes Draaijer <jcdra1@gmail.com>"]
version = "0.5.2"
version = "0.6.0"
keywords = ["ethernet", "eth", "stm32", "stm32f4", "stm32f7"]
repository = "https://github.com/stm32-rs/stm32-eth"
documentation = "https://docs.rs/stm32-eth/"
Expand Down Expand Up @@ -86,7 +86,7 @@ features = [ "thumbv7-backend" ]

[dev-dependencies.rtic-sync]
package = "rtic-sync"
version = "1.0"
version = "1.3"

# This isn't an actual example. It just exists so we can easily
# test the common items :)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Pull requests are welcome :)
Add one of the following to the `[dependencies]` section in your `Cargo.toml` (with the correct MCU specified):

```toml
stm32-eth = { version = "0.4.1", features = ["stm32f429"] } # For stm32f4xx-like MCUs
stm32-eth = { version = "0.4.1", features = ["stm32f767"] } # For stm32f7xx-like MCUs
stm32-eth = { version = "0.4.1", features = ["stm32f107"] } # For stm32f107
stm32-eth = { version = "0.6.0", features = ["stm32f429"] } # For stm32f4xx-like MCUs
stm32-eth = { version = "0.6.0", features = ["stm32f767"] } # For stm32f7xx-like MCUs
stm32-eth = { version = "0.6.0", features = ["stm32f107"] } # For stm32f107
```

`stm32_eth` re-exports the underlying HAL as `stm32_eth::hal`.
Expand Down
1 change: 0 additions & 1 deletion examples/async-rtic-timestamp.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]

//! For build and run instructions, see README.md
//!
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ pub(crate) mod peripherals;
#[cfg(feature = "ptp")]
pub mod ptp;

#[cfg(feature = "smoltcp-phy")]
pub use smoltcp;

#[cfg(feature = "device-selected")]
use {
dma::{EthernetDMA, RxRingEntry, TxRingEntry},
Expand Down

0 comments on commit 199e62b

Please sign in to comment.