From aef19e31c768b988422db5191cd074bb429b4311 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Thu, 11 Jun 2020 13:10:45 -0300 Subject: [PATCH] Bumped version to 0.2.5 --- CHANGELOG.md | 2 ++ debian/changelog | 9 +++++++++ kiplot/__version__.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfec159c6..abf4ba90f 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 08628aa0a..39bd9a737 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 2543961d6..96487b893 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))