From a8b4eb253bcee9c1a2b7b4f5515dc4bfdd57920c Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 29 Mar 2023 08:59:24 -0300 Subject: [PATCH] Bumped version to 2.4.6 --- CHANGELOG.md | 5 +++++ debian/changelog | 6 ++++++ kicad-diff-init.py | 2 +- kicad-diff.py | 4 ++-- kicad-git-diff.py | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a5ad0..9d87763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.4.6] - 2023-03-29 +### Fixed +- Problems when comparing two PCB/SCH with different page size using the + red_green mode. (#5) + ## [2.4.5] - 2023-03-07 ### Changed - When the bounding box of the PCB changes we make the diff using a 1:1 plot diff --git a/debian/changelog b/debian/changelog index 9e19f03..58b81f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +kidiff (2.4.6-1) stable; urgency=medium + + * Better behavior when the page sizes doesn't match + + -- Salvador Eduardo Tropea Wed, 29 Mar 2023 08:52:50 -0300 + kidiff (2.4.5-1) stable; urgency=medium * Added mechanism to better compare PCBs with changes in the bounding box diff --git a/kicad-diff-init.py b/kicad-diff-init.py index f580bce..230efd0 100755 --- a/kicad-diff-init.py +++ b/kicad-diff-init.py @@ -13,7 +13,7 @@ __copyright__ = 'Copyright 2020, INTI' __credits__ = ['Salvador E. Tropea'] __license__ = 'GPL 2.0' -__version__ = '2.4.5' +__version__ = '2.4.6' __email__ = 'stopea@inti.gob.ar' __status__ = 'beta' __url__ = 'https://github.com/INTI-CMNB/KiDiff/' diff --git a/kicad-diff.py b/kicad-diff.py index d00a85f..e330961 100755 --- a/kicad-diff.py +++ b/kicad-diff.py @@ -26,10 +26,10 @@ """ __author__ = 'Salvador E. Tropea' -__copyright__ = 'Copyright 2020-2022, INTI/'+__author__ +__copyright__ = 'Copyright 2020-2023, INTI/'+__author__ __credits__ = ['Salvador E. Tropea', 'Jesse Vincent'] __license__ = 'GPL 2.0' -__version__ = '2.4.5' +__version__ = '2.4.6' __email__ = 'salvador@inti.gob.ar' __status__ = 'beta' __url__ = 'https://github.com/INTI-CMNB/KiDiff/' diff --git a/kicad-git-diff.py b/kicad-git-diff.py index d4db79f..78abfe2 100755 --- a/kicad-git-diff.py +++ b/kicad-git-diff.py @@ -15,7 +15,7 @@ __copyright__ = 'Copyright 2020, INTI' __credits__ = ['Salvador E. Tropea', 'Jesse Vincent'] __license__ = 'GPL 2.0' -__version__ = '2.4.5' +__version__ = '2.4.6' __email__ = 'salvador@inti.gob.ar' __status__ = 'beta' __url__ = 'https://github.com/INTI-CMNB/KiDiff/'