This repository was archived by the owner on Mar 20, 2022. It is now read-only.
File tree 6 files changed +10
-27
lines changed
6 files changed +10
-27
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ Unreleased ]
7
+ ## [ 0.10.1 ] - 2021-12-24
8
8
### Added
9
9
- Added a new W5500 type for VDM transfers with an infallible GPIO.
10
10
- Added ` defmt::Format ` for ` Eui48Addr ` .
@@ -141,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141
141
## [ 0.1.0] - 2021-01-02
142
142
- Initial release
143
143
144
- [ Unreleased ] : https://github.com/newAM/w5500-ll-rs/compare/v0.10.0...HEAD
144
+ [ Unreleased ] : https://github.com/newAM/w5500-ll-rs/compare/v0.10.1...HEAD
145
+ [ 0.10.1 ] : https://github.com/newAM/w5500-ll-rs/compare/v0.10.0...v0.10.1
145
146
[ 0.10.0 ] : https://github.com/newAM/w5500-ll-rs/compare/v0.9.0...v0.10.0
146
147
[ 0.9.0 ] : https://github.com/newAM/w5500-ll-rs/compare/v0.8.0...v0.9.0
147
148
[ 0.8.0 ] : https://github.com/newAM/w5500-ll-rs/compare/v0.7.0...v0.8.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " w5500-ll"
3
- version = " 0.10.0 "
3
+ version = " 0.10.1 "
4
4
authors = [
" Alex Martens <[email protected] >" ]
5
5
edition = " 2021"
6
6
rust-version = " 1.56"
@@ -15,9 +15,6 @@ homepage = "https://github.com/newAM/w5500-ll-rs"
15
15
[features ]
16
16
std = []
17
17
18
- [badges ]
19
- maintenance = { status = " passively-maintained" }
20
-
21
18
[dependencies .embedded-hal ]
22
19
version = " 0.2.4"
23
20
optional = true
@@ -28,7 +25,6 @@ optional = true
28
25
29
26
[dev-dependencies ]
30
27
embedded-hal-mock = " 0.8"
31
- version-sync = " 0.9"
32
28
33
29
[package .metadata .docs .rs ]
34
30
all-features = true
Original file line number Diff line number Diff line change 1
- ![ Maintenance] ( https://img.shields.io/badge/maintenance-passively--maintained-yellowgreen.svg )
2
1
[ ![ crates.io] ( https://img.shields.io/crates/v/w5500-ll.svg )] ( https://crates.io/crates/w5500-ll )
3
2
[ ![ docs.rs] ( https://docs.rs/w5500-ll/badge.svg )] ( https://docs.rs/w5500-ll/ )
4
3
[ ![ CI] ( https://github.com/newAM/w5500-ll-rs/workflows/CI/badge.svg )] ( https://github.com/newAM/w5500-ll-rs/actions )
@@ -47,6 +46,6 @@ All features are disabled by default.
47
46
[ w5500-hl ] : https://github.com/newAM/w5500-hl-rs
48
47
[ w5500-regsim ] : https://github.com/newAM/w5500-regsim-rs
49
48
[ Wiznet W5500 ] : https://www.wiznet.io/product-item/w5500/
50
- [ `blocking` ] : https://docs.rs/w5500-ll/0.10.0 /w5500_ll/blocking/index.html
51
- [ `Registers` ] : https://docs.rs/w5500-ll/0.10.0 /w5500_ll/trait.Registers.html
52
- [ `w5500_ll::net` ] : https://docs.rs/w5500-ll/0.10.0 /w5500_ll/net/index.html
49
+ [ `blocking` ] : https://docs.rs/w5500-ll/0.10.1 /w5500_ll/blocking/index.html
50
+ [ `Registers` ] : https://docs.rs/w5500-ll/0.10.1 /w5500_ll/trait.Registers.html
51
+ [ `w5500_ll::net` ] : https://docs.rs/w5500-ll/0.10.1 /w5500_ll/net/index.html
Original file line number Diff line number Diff line change 1
- { {badges} }
2
1
[](https://crates.io/crates/w5500-ll)
3
2
[](https://docs.rs/w5500-ll/)
4
3
[](https://github.com/newAM/w5500-ll-rs/actions)
Original file line number Diff line number Diff line change 50
50
//! [w5500-hl]: https://github.com/newAM/w5500-hl-rs
51
51
//! [w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
52
52
//! [Wiznet W5500]: https://www.wiznet.io/product-item/w5500/
53
- //! [`blocking`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/blocking/index.html
54
- //! [`Registers`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/trait.Registers.html
55
- //! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/net/index.html
56
- #![ doc( html_root_url = "https://docs.rs/w5500-ll/0.10.0" ) ]
53
+ //! [`blocking`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/blocking/index.html
54
+ //! [`Registers`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/trait.Registers.html
55
+ //! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/net/index.html
57
56
#![ cfg_attr( docsrs, feature( doc_cfg) , feature( doc_auto_cfg) ) ]
58
57
#![ cfg_attr( not( feature = "std" ) , no_std) ]
59
58
#![ forbid( unsafe_code) ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments