From 8fbcffba0fda370c6d1079b07460c48186dcdd73 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sun, 14 Jun 2020 15:28:25 -0300 Subject: [PATCH] Bumped version to 0.3.0 --- CHANGELOG.md | 4 +++- debian/changelog | 11 +++++++++++ kiplot/__version__.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52c2169f..681d7870 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.3.0] - 2020-06-14 ### Added - Better debug information when a BoM fails to be generated. - Support for compressed YAML files. ### Changed -- Allowed operations that doesn't involve a PCB now can run if the PCB file is +- Allow operations that doesn't involve a PCB to run if the PCB file is missing or corrupted. - The 'check_zone_fills' option is now independent of 'run_drc' diff --git a/debian/changelog b/debian/changelog index 39bd9a73..8ba2d724 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +kiplot.inti-cmnb (0.3.0-1) stable; urgency=medium + + * Added better debug information when a BoM fails to be generated. + * Added support for compressed YAML files. + * Changed to allow operations that doesn't involve a PCB to run if the PCB + file is missing or corrupted. + * The 'check_zone_fills' option is now independent of 'run_drc' + * Fixed error codes that overlapped. + + -- Salvador E. Tropea Sun, 14 Jun 2020 15:24:36 -0300 + kiplot.inti-cmnb (0.2.5-1) stable; urgency=medium * Added: tolerate config files without outputs diff --git a/kiplot/__version__.py b/kiplot/__version__.py index 96487b89..fbf0a5bf 100644 --- a/kiplot/__version__.py +++ b/kiplot/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 2, 5) +VERSION = (0, 3, 0) __version__ = '.'.join(map(str, VERSION))