Skip to content
This repository was archived by the owner on Mar 20, 2022. It is now read-only.

Commit 361abf0

Browse files
committed
version: 0.10.0 -> 0.10.1
1 parent d65af0c commit 361abf0

File tree

6 files changed

+10
-27
lines changed

6 files changed

+10
-27
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.10.1] - 2021-12-24
88
### Added
99
- Added a new W5500 type for VDM transfers with an infallible GPIO.
1010
- Added `defmt::Format` for `Eui48Addr`.
@@ -141,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141141
## [0.1.0] - 2021-01-02
142142
- Initial release
143143

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
145146
[0.10.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.9.0...v0.10.0
146147
[0.9.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.8.0...v0.9.0
147148
[0.8.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.7.0...v0.8.0

Cargo.toml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "w5500-ll"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Alex Martens <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -15,9 +15,6 @@ homepage = "https://github.com/newAM/w5500-ll-rs"
1515
[features]
1616
std = []
1717

18-
[badges]
19-
maintenance = { status = "passively-maintained" }
20-
2118
[dependencies.embedded-hal]
2219
version = "0.2.4"
2320
optional = true
@@ -28,7 +25,6 @@ optional = true
2825

2926
[dev-dependencies]
3027
embedded-hal-mock = "0.8"
31-
version-sync = "0.9"
3228

3329
[package.metadata.docs.rs]
3430
all-features = true

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
![Maintenance](https://img.shields.io/badge/maintenance-passively--maintained-yellowgreen.svg)
21
[![crates.io](https://img.shields.io/crates/v/w5500-ll.svg)](https://crates.io/crates/w5500-ll)
32
[![docs.rs](https://docs.rs/w5500-ll/badge.svg)](https://docs.rs/w5500-ll/)
43
[![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.
4746
[w5500-hl]: https://github.com/newAM/w5500-hl-rs
4847
[w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
4948
[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

README.tpl

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{badges}}
21
[![crates.io](https://img.shields.io/crates/v/w5500-ll.svg)](https://crates.io/crates/w5500-ll)
32
[![docs.rs](https://docs.rs/w5500-ll/badge.svg)](https://docs.rs/w5500-ll/)
43
[![CI](https://github.com/newAM/w5500-ll-rs/workflows/CI/badge.svg)](https://github.com/newAM/w5500-ll-rs/actions)

src/lib.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,9 @@
5050
//! [w5500-hl]: https://github.com/newAM/w5500-hl-rs
5151
//! [w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
5252
//! [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
5756
#![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))]
5857
#![cfg_attr(not(feature = "std"), no_std)]
5958
#![forbid(unsafe_code)]

tests/version-numbers.rs

-11
This file was deleted.

0 commit comments

Comments
 (0)