diff --git a/CHANGELOG.md b/CHANGELOG.md index e41c489..eb5fcde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +### [v0.5.1](https://github.com/fpagliughi/rust-industrial-io/compare/v0.5.0..v0.5.1) - 2022-02-05 + +- `iio_info_rs` utility now supports network and URI contexts. +- [PR #19](https://github.com/fpagliughi/rust-industrial-io/pull/19) macOS build makes a distinction for Intel and non-Intel builds when searching for Homebrew Frameworks (libiio library). +- [PR #20](https://github.com/fpagliughi/rust-industrial-io/pull/20) Fix some clippy suggestions. Particularly cleaner casting of raw pointers, etc. + ### [v0.5.0](https://github.com/fpagliughi/rust-industrial-io/compare/v0.4.0..v0.5.0) - 2022-01-30 - Started loosening thread safety restrictions: diff --git a/Cargo.toml b/Cargo.toml index 91bf7cc..2cc7390 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "industrial-io" -version = "0.5.0" +version = "0.5.1" edition = "2018" authors = ["Frank Pagliughi "] repository = "https://github.com/fpagliughi/rust-industrial-io" diff --git a/README.md b/README.md index e651db4..a45ca32 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ To keep up with the latest announcements for this project, follow: **Twitter:** [@fmpagliughi](https://twitter.com/fmpagliughi) -### Unreleased Features in this Branch +### New in Version 0.5.1 - `iio_info_rs` utility now supports network and URI contexts. - [PR #19](https://github.com/fpagliughi/rust-industrial-io/pull/19) macOS build makes a distinction for Intel and non-Intel builds when searching for Homebrew Frameworks (libiio library).