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

Commit 6383099

Browse files
committed
Bump version to 0.5.0
1 parent 1a95bb8 commit 6383099

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
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.5.0] - 2021-02-06
88
### Added
99
- Added the `Default` trait for `DuplexStatus`, `LinkStatus`, and `SpeedStatus`.
1010
- Added a `std` crate feature (disabled by default).
@@ -66,7 +66,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6666
## [0.1.0] - 2021-01-02
6767
- Initial release
6868

69-
[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.4.0...HEAD
69+
[Unreleased]: https://github.com/newAM/w5500-ll-rs/compare/v0.5.0...HEAD
70+
[0.5.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.4.0...v0.5.0
7071
[0.4.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.3.0...v0.4.0
7172
[0.3.0]: https://github.com/newAM/w5500-ll-rs/compare/v0.2.1...v0.3.0
7273
[0.2.1]: https://github.com/newAM/w5500-ll-rs/compare/v0.2.0...v0.2.1

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "w5500-ll"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Alex M. <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/newAM/w5500-ll-rs"
@@ -19,12 +19,12 @@ std = []
1919
maintenance = { status = "actively-developed" }
2020

2121
[dependencies.embedded-hal]
22-
version = "0.2.4"
22+
version = "~0.2.4"
2323
optional = true
2424

2525
[dev-dependencies]
26-
embedded-hal-mock = "0.7"
27-
version-sync = "0.9.1"
26+
embedded-hal-mock = "~0.7"
27+
version-sync = "~0.9.1"
2828

2929
[package.metadata.docs.rs]
3030
all-features = true

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ assert_eq!(version, 0x04);
3232
By default only the `embedded-hal` feature is enabled.
3333

3434
* `embedded-hal`: Enables the [`blocking`] module which contains
35-
implmentations of the [`Registers`] trait using the [`embedded-hal`] traits.
35+
implementations of the [`Registers`] trait using the [`embedded-hal`] traits.
3636
* `std`: Enables conversion between [`std::net`] and [`w5500_ll::net`] types.
3737
This is for testing purposes only, the `std` flag will not work on
3838
embedded systems because it uses the standard library.
@@ -42,11 +42,11 @@ By default only the `embedded-hal` feature is enabled.
4242
* [w5500-hl] - Higher level socket operations.
4343
* [w5500-regsim] - Register simulation using [`std::net`].
4444

45-
[`blocking`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/blocking/index.html
4645
[`embedded-hal`]: https://github.com/rust-embedded/embedded-hal
47-
[`Registers`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/trait.Registers.html
4846
[`std::net`]: https://doc.rust-lang.org/std/net/index.html
49-
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/net/index.html
5047
[w5500-hl]: https://github.com/newAM/w5500-hl-rs
5148
[w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
5249
[Wiznet W5500]: https://www.wiznet.io/product-item/w5500/
50+
[`blocking`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/blocking/index.html
51+
[`Registers`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/trait.Registers.html
52+
[`w5500_ll::net`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/net/index.html

src/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
//! By default only the `embedded-hal` feature is enabled.
3636
//!
3737
//! * `embedded-hal`: Enables the [`blocking`] module which contains
38-
//! implmentations of the [`Registers`] trait using the [`embedded-hal`] traits.
38+
//! implementations of the [`Registers`] trait using the [`embedded-hal`] traits.
3939
//! * `std`: Enables conversion between [`std::net`] and [`w5500_ll::net`] types.
4040
//! This is for testing purposes only, the `std` flag will not work on
4141
//! embedded systems because it uses the standard library.
@@ -45,15 +45,15 @@
4545
//! * [w5500-hl] - Higher level socket operations.
4646
//! * [w5500-regsim] - Register simulation using [`std::net`].
4747
//!
48-
//! [`blocking`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/blocking/index.html
4948
//! [`embedded-hal`]: https://github.com/rust-embedded/embedded-hal
50-
//! [`Registers`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/trait.Registers.html
5149
//! [`std::net`]: https://doc.rust-lang.org/std/net/index.html
52-
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.4.0/w5500_ll/net/index.html
5350
//! [w5500-hl]: https://github.com/newAM/w5500-hl-rs
5451
//! [w5500-regsim]: https://github.com/newAM/w5500-regsim-rs
5552
//! [Wiznet W5500]: https://www.wiznet.io/product-item/w5500/
56-
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.4.0")]
53+
//! [`blocking`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/blocking/index.html
54+
//! [`Registers`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/trait.Registers.html
55+
//! [`w5500_ll::net`]: https://docs.rs/w5500-ll/0.5.0/w5500_ll/net/index.html
56+
#![doc(html_root_url = "https://docs.rs/w5500-ll/0.5.0")]
5757
#![cfg_attr(docsrs, feature(doc_cfg))]
5858
#![forbid(unsafe_code)]
5959
#![deny(missing_docs)]

0 commit comments

Comments
 (0)