diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6daaeb..c2186843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + + +## [1.3.0] - 2022-09-08 ### Added - New outputs: - Diff: to compute differences between PCBs and SCHs. (INTI-CMNB/KiAuto#14) diff --git a/debian/changelog b/debian/changelog index b296adc8..9f627000 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +kibot (1.3.0-1) stable; urgency=medium + + * New outputs: Diff and Info + * Download missing tools + * New global options: to cross components without body and restore project + * Nested imports and preflight imports + * Option to continue on errors + * PDF/SVG PCB Print: option to print all pages/single page + * iBoM: Support for variants that change component fields + * Workaround for problems with DRC exclusions + * Internal BoM: KiCad 6 text variables expansion in the fields + * Compress: Option to store symlinks + * PCB Print: + - Option to configure the forced edge color. + - Option to control the resolution (DPI). + - Option to move the page number to the extension (page_number_as_extension) + - Option to customize the page numbers (See #283) + * Installation checker: option to show the tool paths. + * Various fixes + + -- Salvador E. Tropea Thu, 08 Sep 2022 09:00:51 -0300 + kibot (1.2.0-1) stable; urgency=medium * The outputs help now display the more relevant options first and diff --git a/kibot/__init__.py b/kibot/__init__.py index 96714224..7a62716e 100644 --- a/kibot/__init__.py +++ b/kibot/__init__.py @@ -5,5 +5,5 @@ __license__ = 'GPL v3+' __email__ = 'stropea@inti.gob.ar' __url__ = 'https://github.com/INTI-CMNB/KiBot/' __status__ = 'stable' -__version__ = '1.2.1' +__version__ = '1.3.0' __pypi_deps__ = ['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'qrcodegen']