diff --git a/CHANGELOG.md b/CHANGELOG.md index 80f7c3b..fba86a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,19 @@ 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). +## [0.2.2] - 2023-11-28 + +### Changed + +* Flag bad values from the SHT4X so that they aren't used. Bad values include + the 0x8000/0x8000 bad report and values outside of 0-100 RH and -40-125C +* Add `SHT4X.soft_reset/1` + ## [0.2.1] - 2023-08-30 ### Bug Fixes * `SHT4X.Measurement`'s types have been updated to ensure `:humidity_rh` and `:temperature_c` are `float()` -* The hard-coded `:unusable` measurement value has been updated to return floats as expected. +* The hard-coded `:unusable` measurement value has been updated to return floats as expected. ## [0.2.0] - 2023-07-14 @@ -67,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release +[0.2.2]: https://github.com/elixir-sensors/sht4x/compare/v0.2.1..v0.2.2 [0.2.1]: https://github.com/elixir-sensors/sht4x/compare/v0.2.0..v0.2.1 [0.2.0]: https://github.com/elixir-sensors/sht4x/compare/v0.1.4..v0.2.0 [0.1.4]: https://github.com/elixir-sensors/sht4x/compare/v0.1.3..v0.1.4 diff --git a/mix.exs b/mix.exs index 03cee97..b8f9c81 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule SHT4X.MixProject do use Mix.Project - @version "0.2.1" + @version "0.2.2" @source_url "https://github.com/elixir-sensors/sht4x" @sht4x_datasheet_url "https://developer.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT4x_Datasheet.pdf"