Bumped version to 0.9.0.

This commit is contained in:
Salvador E. Tropea 2021-01-04 16:32:06 -03:00
parent edd4a72277
commit d334599e3b
3 changed files with 20 additions and 1 deletions

View File

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.9.0] - 2021-01-04
### Added ### Added
- iBoM output: file name patterns are allowed for the `netlist_file` option. - iBoM output: file name patterns are allowed for the `netlist_file` option.
- File name patterns: %F is the name of the source file without extension, but - File name patterns: %F is the name of the source file without extension, but

17
debian/changelog vendored
View File

@ -1,3 +1,20 @@
kibot (0.9.0-1) stable; urgency=medium
* Added: file name patterns are allowed for the `netlist_file` option.
* Added: %F is the name of the source file without extension, but
with the path.
* Added support to field overwrite according to variant.
* Added support to generate negative X positions for the bottom layer.
* Added a filter to rotate footprints in the position file (#28).
* Added: The step output now can download missing 3D models.
* Now position files are naturally sorted (R10 after R9, not after R1)
* Position files in CSV format quotes only the columns that could contain an
space. Just like KiCad does.
* Fixed: Now we support missing field names in schematic library entries.
* Fixed: Generic filter `include_only` option worked only when debug enabled.
-- Salvador E. Tropea <salvador@inti.gob.ar> Mon, 04 Jan 2021 15:27:48 -0300
kibot (0.8.1-1) stable; urgency=medium kibot (0.8.1-1) stable; urgency=medium
* Added: Small details to internal BoM HTML output. * Added: Small details to internal BoM HTML output.

View File

@ -53,7 +53,7 @@ __license__ = 'GPL v3+'
__email__ = 'stropea@inti.gob.ar' __email__ = 'stropea@inti.gob.ar'
__url__ = 'https://github.com/INTI-CMNB/KiBot/' __url__ = 'https://github.com/INTI-CMNB/KiBot/'
__status__ = 'stable' __status__ = 'stable'
__version__ = '0.8.1' __version__ = '0.9.0'
import os import os