diff --git a/CHANGELOG.md b/CHANGELOG.md index adf805f..55f8e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.10.1] - 2021-12-24 ### Added - Added a new W5500 type for VDM transfers with an infallible GPIO. - Added `defmt::Format` for `Eui48Addr`. @@ -141,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2021-01-02 - Initial release -[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.10.1...HEAD +[0.10.1]: https://github.com/newAM/w5500-ll-rs/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.7.0...v0.8.0 diff --git a/Cargo.toml b/Cargo.toml index 5b4cf1c..2d94ba5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-ll" -version = "0.10.0" +version = "0.10.1" authors = ["Alex Martens "] edition = "2021" rust-version = "1.56" @@ -15,9 +15,6 @@ homepage = "https://github.com/newAM/w5500-ll-rs" [features] std = [] -[badges] -maintenance = { status = "passively-maintained" } - [dependencies.embedded-hal] version = "0.2.4" optional = true @@ -28,7 +25,6 @@ optional = true [dev-dependencies] embedded-hal-mock = "0.8" -version-sync = "0.9" [package.metadata.docs.rs] all-features = true diff --git a/README.md b/README.md index aeb402d..b6570ad 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -![Maintenance](https://img.shields.io/badge/maintenance-passively--maintained-yellowgreen.svg) [![crates.io](https://img.shields.io/crates/v/w5500-ll.svg)](https://crates.io/crates/w5500-ll) [![docs.rs](https://docs.rs/w5500-ll/badge.svg)](https://docs.rs/w5500-ll/) [![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. [w5500-hl]: https://github.com/newAM/w5500-hl-rs [w5500-regsim]: https://github.com/newAM/w5500-regsim-rs [Wiznet W5500]: https://www.wiznet.io/product-item/w5500/ -[`blocking`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/blocking/index.html -[`Registers`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/trait.Registers.html -[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/net/index.html +[`blocking`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/blocking/index.html +[`Registers`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/trait.Registers.html +[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/net/index.html diff --git a/README.tpl b/README.tpl index b4e97fd..de68778 100644 --- a/README.tpl +++ b/README.tpl @@ -1,4 +1,3 @@ -{{badges}} [![crates.io](https://img.shields.io/crates/v/w5500-ll.svg)](https://crates.io/crates/w5500-ll) [![docs.rs](https://docs.rs/w5500-ll/badge.svg)](https://docs.rs/w5500-ll/) [![CI](https://github.com/newAM/w5500-ll-rs/workflows/CI/badge.svg)](https://github.com/newAM/w5500-ll-rs/actions) diff --git a/src/lib.rs b/src/lib.rs index cdd1892..6daff08 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,10 +50,9 @@ //! [w5500-hl]: https://github.com/newAM/w5500-hl-rs //! [w5500-regsim]: https://github.com/newAM/w5500-regsim-rs //! [Wiznet W5500]: https://www.wiznet.io/product-item/w5500/ -//! [`blocking`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/blocking/index.html -//! [`Registers`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/trait.Registers.html -//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.0/w5500_ll/net/index.html -#![doc(html_root_url = "https://docs.rs/w5500-ll/0.10.0")] +//! [`blocking`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/blocking/index.html +//! [`Registers`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/trait.Registers.html +//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.10.1/w5500_ll/net/index.html #![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))] #![cfg_attr(not(feature = "std"), no_std)] #![forbid(unsafe_code)] diff --git a/tests/version-numbers.rs b/tests/version-numbers.rs deleted file mode 100644 index 22b10d3..0000000 --- a/tests/version-numbers.rs +++ /dev/null @@ -1,11 +0,0 @@ -// See https://crates.io/crates/version-sync - -#[test] -fn test_readme_deps() { - version_sync::assert_markdown_deps_updated!("README.md"); -} - -#[test] -fn test_html_root_url() { - version_sync::assert_html_root_url_updated!("src/lib.rs"); -}