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

Commit

Permalink
version: 0.8.0 -> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Nov 7, 2021
1 parent 5209b22 commit 0d42c85
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0] - 2021-11-07
### Added
- Added `defmt::Display` for all enumerations.
- Added `defmt::Display` for `fdm::W5500`, `vdm::W5500`, and `vdm::Error`.
Expand Down Expand Up @@ -131,7 +131,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.8.0...HEAD
[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.9.0...HEAD
[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
[0.7.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.6.2...v0.7.0
[0.6.2]: https://github.com/newAM/w5500-ll-rs/compare/v0.6.1...v0.6.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-ll"
version = "0.8.0"
version = "0.9.0"
authors = ["Alex M. <alexmgit@protonmail.com>"]
edition = "2021"
rust-version = "1.56"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,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.8.0/w5500_ll/blocking/index.html
[`Registers`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/trait.Registers.html
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/net/index.html
[`blocking`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/blocking/index.html
[`Registers`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/trait.Registers.html
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/net/index.html
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
//! [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.8.0/w5500_ll/blocking/index.html
//! [`Registers`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/trait.Registers.html
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/net/index.html
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.8.0")]
//! [`blocking`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/blocking/index.html
//! [`Registers`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/trait.Registers.html
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/net/index.html
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.9.0")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(not(feature = "std"), no_std)]
#![forbid(unsafe_code)]
Expand Down

0 comments on commit 0d42c85

Please sign in to comment.