From dee752285fe8eb321031c65d310d510d01a11b89 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Sun, 1 Mar 2020 20:08:56 +0100 Subject: [PATCH] Release 0.1.1 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72f2186..7c23e32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ No changes. +## [0.1.1 - 2020-03-01](https://github.com/jonas-schievink/jaylink/releases/tag/0.1.1) + +No changes. + ## [0.1.0 - 2019-12-08](https://github.com/jonas-schievink/jaylink/releases/tag/0.1.0) Initial release. diff --git a/Cargo.toml b/Cargo.toml index 9a70812..5cc9aaa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jaylink" -version = "0.1.0" +version = "0.1.1" authors = ["Jonas Schievink "] edition = "2018" description = "Library to communicate with J-Link USB devices" diff --git a/README.md b/README.md index 9cf5859..a43ae31 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add an entry to your `Cargo.toml`: ```toml [dependencies] -jaylink = "0.1.0" +jaylink = "0.1.1" ``` Check the [API Documentation](https://docs.rs/jaylink/) for how to use the diff --git a/src/lib.rs b/src/lib.rs index 5d4c1a8..0384d46 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.0")] +#![doc(html_root_url = "https://docs.rs/jaylink/0.1.1")] // 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)]