Bumped version to 0.3.0

This commit is contained in:
Salvador E. Tropea 2020-06-14 15:28:25 -03:00
parent 0d9256fb24
commit 8fbcffba0f
3 changed files with 15 additions and 2 deletions

View File

@ -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'

11
debian/changelog vendored
View File

@ -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 <salvador@inti.gob.ar> Sun, 14 Jun 2020 15:24:36 -0300
kiplot.inti-cmnb (0.2.5-1) stable; urgency=medium
* Added: tolerate config files without outputs

View File

@ -1,3 +1,3 @@
VERSION = (0, 2, 5)
VERSION = (0, 3, 0)
__version__ = '.'.join(map(str, VERSION))