diff --git a/CHANGELOG.md b/CHANGELOG.md index f8f2fa0..2d3fa35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.2] - 2020-09-10 +### Fixed +- Crash when no arguments. +- Crash when no x11vnc and it was requested. +- Lost warning messages when using --warnings_as_errors + ## [1.4.1] - 2020-06-14 ### Added - --fill_zones/-f option to 'pcbnew_do export' to fill zones before printing. diff --git a/debian/changelog b/debian/changelog index 3e5381a..82b7be2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +kicad-automation-scripts.inti-cmnb (1.4.2-1) stable; urgency=medium + + * Fixed crashes when no argument and when x11vnc is not installed. + * Fixed lost warning messages when using --warnings_as_errors + + -- Salvador E. Tropea Thu, 10 Sep 2020 16:14:01 -0300 + kicad-automation-scripts.inti-cmnb (1.4.1-1) stable; urgency=medium * Added --fill_zones/-f option to 'pcbnew_do export' to fill zones before printing. diff --git a/kicad_auto/misc.py b/kicad_auto/misc.py index 04dd415..8cffec3 100644 --- a/kicad_auto/misc.py +++ b/kicad_auto/misc.py @@ -19,4 +19,4 @@ WAIT_START = 25 -__version__ = '1.4.1' +__version__ = '1.4.2'