diff --git a/CHANGELOG.md b/CHANGELOG.md index cfec159c..abf4ba90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.2.5] - 2020-06-11 ### Added - Tolerate config files without outputs - Mechanism to filter ERC/DRC errors diff --git a/debian/changelog b/debian/changelog index 08628aa0..39bd9a73 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +kiplot.inti-cmnb (0.2.5-1) stable; urgency=medium + + * Added: tolerate config files without outputs + * Added: mechanism to filter ERC/DRC errors + * Fixed: All pcbnew plot formats generated gerber job files + * Fixed: Most formats that needed layers didn't complain when ommited + + -- Salvador E. Tropea Thu, 11 Jun 2020 13:06:12 -0300 + kiplot.inti-cmnb (0.2.4-1) stable; urgency=medium * Changed: Now kicad-automation-scripts 1.3.1 or newer is needed. diff --git a/kiplot/__version__.py b/kiplot/__version__.py index 2543961d..96487b89 100644 --- a/kiplot/__version__.py +++ b/kiplot/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 2, 4) +VERSION = (0, 2, 5) __version__ = '.'.join(map(str, VERSION))