diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ee7cb..1dc959d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. 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). +## [2.2.2] - 2023-04-02 +### Added +- Workaround for KiCad 7 not defining KICAD7_FOOTPRINT_DIR during DRC +- Support for kicad-cli options from the KiCad 8.0 branch + + ## [2.2.1] - 2023-02-27 ### Added - Grid size for ERC in KiCad 7 diff --git a/debian/changelog b/debian/changelog index 4717d51..5b201fd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +kiauto (2.2.2-1) stable; urgency=medium + + * Workaround for KiCad 7 not defining KICAD7_FOOTPRINT_DIR during DRC + * Support for kicad-cli options from the KiCad 8.0 branch + + -- Salvador E. Tropea Sun, 02 Apr 2023 17:33:44 -0300 + kiauto (2.2.1-2) stable; urgency=medium * Accept KiCad nightly as dependency diff --git a/kiauto/misc.py b/kiauto/misc.py index f2e7ca8..fbcade0 100644 --- a/kiauto/misc.py +++ b/kiauto/misc.py @@ -318,4 +318,4 @@ def get_en_locale(logger): __email__ = 'stropea@inti.gob.ar' __status__ = 'stable' __url__ = 'https://github.com/INTI-CMNB/KiAuto/' -__version__ = '2.2.1' +__version__ = '2.2.2'