diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e34877a..80c93787 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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.1.0] - 2022-05-24 ### Added - `kibot-check` tool to check the installation - New outputs: diff --git a/debian/changelog b/debian/changelog index 0fba2234..ee8102aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +kibot (1.1.0-1) stable; urgency=medium + + * `kibot-check` tool to check the installation + * New outputs: KiCad netlist generation and IPC-D-356 netlist generation + * Internal BoM: Pattern and text variables expansion in the title and + customizable extra info after the title + * Fixed: already configured outputs not created (i.e. when creating reports) + * Fixed: KiCost+Internal variants: UTF-8 problems and problem with `variant` + field capitalization + + -- Salvador E. Tropea Tue, 24 May 2022 08:59:47 -0300 + kibot (1.0.0-1) stable; urgency=medium * KiCad 6 support diff --git a/kibot/__init__.py b/kibot/__init__.py index ec883564..fb6ab31f 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.0.0' +__version__ = '1.1.0' __pypi_deps__ = ['kiauto', 'pyyaml', 'xlsxwriter', 'colorama', 'requests', 'qrcodegen']