Bumped version to 0.8.0.

Also Python version to 3.6 (mcpyrate)
This commit is contained in:
Salvador E. Tropea 2020-11-06 13:51:19 -03:00
parent 577713efeb
commit 019cb0c8a4
5 changed files with 21 additions and 6 deletions

View File

@ -5,7 +5,10 @@ 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]
# [Unreleased]
## [0.8.0] - 2020-11-06
### Added
- The KiBoM and internal BoM generators now support configuring the
separator used for the list of references.
@ -16,8 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
like.
### Fixed
- KiBom variants when using multiple variants and a components used more
than one, specifying oposite rules.
- KiBom variants when using multiple variants and a component uses more
than one, specifying opposite rules.
- Problems when using the `pdf_pcb_print` output and variants to remove
a component with ridiculous pads that only has solder paste (no
copper, nor even solder mask aperture).

12
debian/changelog vendored
View File

@ -1,3 +1,15 @@
kibot (0.8.0-1) stable; urgency=medium
* Added: BoM references separator.
* Added: More PCB print options.
* Added: Filters for KiBot warnings.
* Added: Columns customization for .pos files.
* Fixed: Variants issues.
* Fixed: Problem with bogus pads without solder mask aperture.
* Fixed: Problems when generating unified drill files.
-- Salvador E. Tropea <salvador@inti.gob.ar> Fri, 06 Nov 2020 13:40:49 -0300
kibot (0.7.0-1) stable; urgency=medium
* Variants and filters support for most outputs.

2
debian/control vendored
View File

@ -5,7 +5,7 @@ Maintainer: Salvador Eduardo Tropea <salvador@inti.gob.ar>
Build-Depends: debhelper (>=11~), dh-python, python3-all
Standards-Version: 4.1.4
Homepage: https://github.com/INTI-CMNB/KiBot
X-Python3-Version: >= 3.4
X-Python3-Version: >= 3.6
Package: kibot
Architecture: all

View File

@ -53,7 +53,7 @@ __license__ = 'GPL v3+'
__email__ = 'set@ieee.org'
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
__status__ = 'stable'
__version__ = '0.7.0'
__version__ = '0.8.0'
import os

View File

@ -32,5 +32,5 @@ setup(name='kibot',
],
platforms='POSIX',
license='GPL-3.0',
python_requires='>=3.4',
python_requires='>=3.6',
)