From 64a132501217e5d12a104f2ad04864b1db799e72 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Fri, 4 Feb 2022 15:22:20 +0100 Subject: [PATCH] Release 0.3.0 --- 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 fac7a67..b1e2cc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +No changes. + +## [0.3.0 - 2022-02-04](https://github.com/jonas-schievink/jaylink/releases/tag/v0.3.0) + - Update `rusb` dependency to 0.9 ([#37]). - Reduce MSRV promise to "latest stable". diff --git a/Cargo.toml b/Cargo.toml index b3202c8..9a742e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jaylink" -version = "0.2.0" +version = "0.3.0" authors = ["Jonas Schievink "] edition = "2018" description = "Library to communicate with J-Link USB devices" diff --git a/README.md b/README.md index dcb7551..c8ebbec 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add an entry to your `Cargo.toml`: ```toml [dependencies] -jaylink = "0.2.0" +jaylink = "0.3.0" ``` Check the [API Documentation](https://docs.rs/jaylink/) for how to use the diff --git a/src/lib.rs b/src/lib.rs index ea19844..402db71 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -71,7 +71,7 @@ //! //! The archive.org version is the most up-to-date one. -#![doc(html_root_url = "https://docs.rs/jaylink/0.2.0")] +#![doc(html_root_url = "https://docs.rs/jaylink/0.3.0")] // 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, unreachable_pub)]