From fceb9cad10d6315c6125a726b86adb21e175217d Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Wed, 7 Nov 2018 12:18:28 -0500 Subject: [PATCH] v1.2.1 release --- CHANGELOG.md | 20 +++++++++++++------- mix.exs | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbda66..4f82bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,20 @@ # Changelog +## v1.2.1 + +* Bug fixes + * Added missing ignore parity option to parity checking choices + * Fix compiler warnings when built using newer versions of gcc + ## v1.2.0 - * Improvements - * Added `id: pid` option. In active mode, this causes the receive - notification messages to contain the pid of the Nerves.UART GenServer that - sends them. Thanks to Tallak Tveide for this improvement. - * Added `find_pids/0` diagnostic utility for finding lost `Nerves.UART` pids. - This is handy when you need to close a serial port and don't know the pid. - * Added `configuration/1` to get the current configuration of a UART. +* Improvements + * Added `id: pid` option. In active mode, this causes the receive + notification messages to contain the pid of the Nerves.UART GenServer that + sends them. Thanks to Tallak Tveide for this improvement. + * Added `find_pids/0` diagnostic utility for finding lost `Nerves.UART` pids. + This is handy when you need to close a serial port and don't know the pid. + * Added `configuration/1` to get the current configuration of a UART. ## v1.1.1 diff --git a/mix.exs b/mix.exs index 83bb35d..cf4d27a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Nerves.UART.MixProject do use Mix.Project - @version "1.2.0" + @version "1.2.1" @description "Discover and use UARTs and serial ports in Elixir."