diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f8c8b8..12bffc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +No changes. + +## [0.1.5 - 2020-08-27](https://github.com/jonas-schievink/jaylink/releases/tag/v0.1.5) + - Improve error message on Windows, hinting at installing WinUSB. ## [0.1.4 - 2020-07-26](https://github.com/jonas-schievink/jaylink/releases/tag/v0.1.4) diff --git a/Cargo.toml b/Cargo.toml index 0cd59b4..d2ed445 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jaylink" -version = "0.1.4" +version = "0.1.5" authors = ["Jonas Schievink "] edition = "2018" description = "Library to communicate with J-Link USB devices" diff --git a/README.md b/README.md index 270e66e..91347b6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add an entry to your `Cargo.toml`: ```toml [dependencies] -jaylink = "0.1.4" +jaylink = "0.1.5" ``` Check the [API Documentation](https://docs.rs/jaylink/) for how to use the diff --git a/src/lib.rs b/src/lib.rs index 8c12b19..2276ea0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -54,7 +54,7 @@ //! //! The archive.org version is the most up-to-date one. -#![doc(html_root_url = "https://docs.rs/jaylink/0.1.4")] +#![doc(html_root_url = "https://docs.rs/jaylink/0.1.5")] // Deny a few warnings in doctests, since rustdoc `allow`s many warnings by default #![doc(test(attr(deny(unused_imports, unused_must_use))))] #![warn(missing_debug_implementations, rust_2018_idioms)]