Bumped version to 0.8.0.
Also Python version to 3.6 (mcpyrate)
This commit is contained in:
parent
577713efeb
commit
019cb0c8a4
|
|
@ -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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
# [Unreleased]
|
||||||
|
|
||||||
|
|
||||||
|
## [0.8.0] - 2020-11-06
|
||||||
### Added
|
### Added
|
||||||
- The KiBoM and internal BoM generators now support configuring the
|
- The KiBoM and internal BoM generators now support configuring the
|
||||||
separator used for the list of references.
|
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.
|
like.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- KiBom variants when using multiple variants and a components used more
|
- KiBom variants when using multiple variants and a component uses more
|
||||||
than one, specifying oposite rules.
|
than one, specifying opposite rules.
|
||||||
- Problems when using the `pdf_pcb_print` output and variants to remove
|
- Problems when using the `pdf_pcb_print` output and variants to remove
|
||||||
a component with ridiculous pads that only has solder paste (no
|
a component with ridiculous pads that only has solder paste (no
|
||||||
copper, nor even solder mask aperture).
|
copper, nor even solder mask aperture).
|
||||||
|
|
|
||||||
|
|
@ -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
|
kibot (0.7.0-1) stable; urgency=medium
|
||||||
|
|
||||||
* Variants and filters support for most outputs.
|
* Variants and filters support for most outputs.
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ Maintainer: Salvador Eduardo Tropea <salvador@inti.gob.ar>
|
||||||
Build-Depends: debhelper (>=11~), dh-python, python3-all
|
Build-Depends: debhelper (>=11~), dh-python, python3-all
|
||||||
Standards-Version: 4.1.4
|
Standards-Version: 4.1.4
|
||||||
Homepage: https://github.com/INTI-CMNB/KiBot
|
Homepage: https://github.com/INTI-CMNB/KiBot
|
||||||
X-Python3-Version: >= 3.4
|
X-Python3-Version: >= 3.6
|
||||||
|
|
||||||
Package: kibot
|
Package: kibot
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ __license__ = 'GPL v3+'
|
||||||
__email__ = 'set@ieee.org'
|
__email__ = 'set@ieee.org'
|
||||||
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
|
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
|
||||||
__status__ = 'stable'
|
__status__ = 'stable'
|
||||||
__version__ = '0.7.0'
|
__version__ = '0.8.0'
|
||||||
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue