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

Commit 0d42c85

Browse files
authored
version: 0.8.0 -> 0.9.0
1 parent 5209b22 commit 0d42c85

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
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.9.0] - 2021-11-07
88
### Added
99
- Added `defmt::Display` for all enumerations.
1010
- Added `defmt::Display` for `fdm::W5500`, `vdm::W5500`, and `vdm::Error`.
@@ -131,7 +131,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
131131
## [0.1.0] - 2021-01-02
132132
- Initial release
133133

134-
[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.8.0...HEAD
134+
[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.9.0...HEAD
135+
[0.9.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.8.0...v0.9.0
135136
[0.8.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.7.0...v0.8.0
136137
[0.7.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.6.2...v0.7.0
137138
[0.6.2]: https://github.com/newAM/w5500-ll-rs/compare/v0.6.1...v0.6.2

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "w5500-ll"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Alex M. <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ All features are disabled by default.
4747
[w5500-hl]: https://github.com/newAM/w5500-hl-rs
4848
[w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
4949
[Wiznet W5500]: https://www.wiznet.io/product-item/w5500/
50-
[`blocking`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/blocking/index.html
51-
[`Registers`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/trait.Registers.html
52-
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/net/index.html
50+
[`blocking`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/blocking/index.html
51+
[`Registers`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/trait.Registers.html
52+
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/net/index.html

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
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.8.0/w5500_ll/blocking/index.html
54-
//! [`Registers`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/trait.Registers.html
55-
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.8.0/w5500_ll/net/index.html
56-
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.8.0")]
53+
//! [`blocking`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/blocking/index.html
54+
//! [`Registers`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/trait.Registers.html
55+
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.9.0/w5500_ll/net/index.html
56+
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.9.0")]
5757
#![cfg_attr(docsrs, feature(doc_cfg))]
5858
#![cfg_attr(not(feature = "std"), no_std)]
5959
#![forbid(unsafe_code)]

0 commit comments

Comments
 (0)