diff --git a/CHANGELOG.md b/CHANGELOG.md index ef56c5d..f952643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3] - 2021-08-29 +- Configure framing to ensure the four byte format + ## [0.1.2] - 2021-08-29 - Restructured `DYPA01.Transport` using `behaviour` - Added minimal test for basic workflow @@ -17,7 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2021-08-28 - Initial release -[Unreleased]: https://github.com/mnishiguchi/dypa01/compare/v0.1.2..HEAD +[Unreleased]: https://github.com/mnishiguchi/dypa01/compare/v0.1.3..HEAD +[0.1.3]: https://github.com/mnishiguchi/dypa01/releases/tag/v0.1.3 [0.1.2]: https://github.com/mnishiguchi/dypa01/releases/tag/v0.1.2 [0.1.1]: https://github.com/mnishiguchi/dypa01/releases/tag/v0.1.1 [0.1.0]: https://github.com/mnishiguchi/dypa01/releases/tag/v0.1.0 diff --git a/README.md b/README.md index 1c124f8..890013f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ iex> Circuits.UART.enumerate } } -# Start a gen server for interacting with a DYPA01 sensor +# Start a gen server for interacting with a DYP-A01 sensor on port ttyAMA0 iex> {:ok, pid} = DYPA01.start_link(port_name: "ttyAMA0") {:ok, #PID<0.1407.0>} diff --git a/mix.exs b/mix.exs index 618989d..4a1d86a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule DYPA01.MixProject do use Mix.Project - @version "0.1.2" + @version "0.1.3" @source_url "https://github.com/mnishiguchi/dypa01" def project do