diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fba49d6..07e8f5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.10.0] - 2021-02-12 ### Added - The multipart id to references of multipart components others than part 1. - Internal BoM: diff --git a/README.md b/README.md index 132dcfe9..041c368b 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,12 @@ KiBot lets you do this. The following picture depicts the data flow: ![KiBot Logo](https://raw.githubusercontent.com/INTI-CMNB/KiBot/master/docs/images/Esquema.png) -**New on 0.7.0**: -Now KiBot supports *variants*. To my knowledge this is the first tool to implement such a feature, in a transparent way and from schematic to PCB, for KiCad. -To learn more about KiBot variants visit the [example repo](https://inti-cmnb.github.io/kibot_variants_arduprog/). +**New on 0.10.0**: +- Makefile generation (for local use, avoiding to redo unneeded stuff) +- Compressed files generation (to gather deliverables) +- Import outputs from another project (i.e. gerber and drill recipe for a particular manufacturer) +- Multi-project consolidated BoMs +- Sortable HTML BoMs (choose any column) ## Configuration diff --git a/debian/changelog b/debian/changelog index 1c6098c3..affdd2e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +kibot (0.10.0-1) stable; urgency=medium + + * Most relevant: + - Compressed files generation + - Makefile generation + - Import outputs from other configs + - Multi-project consolidated BoMs + - Sortable HTML BoMs + - Gerber and drill examples for five manufacturers + + -- Salvador E. Tropea Fri, 12 Feb 2021 15:58:41 -0300 + kibot (0.9.0-1) stable; urgency=medium * Added: file name patterns are allowed for the `netlist_file` option. diff --git a/docs/README.in b/docs/README.in index bb296366..7a673189 100644 --- a/docs/README.in +++ b/docs/README.in @@ -63,9 +63,12 @@ KiBot lets you do this. The following picture depicts the data flow: ![KiBot Logo](https://raw.githubusercontent.com/INTI-CMNB/KiBot/master/docs/images/Esquema.png) -**New on 0.7.0**: -Now KiBot supports *variants*. To my knowledge this is the first tool to implement such a feature, in a transparent way and from schematic to PCB, for KiCad. -To learn more about KiBot variants visit the [example repo](https://inti-cmnb.github.io/kibot_variants_arduprog/). +**New on 0.10.0**: +- Makefile generation (for local use, avoiding to redo unneeded stuff) +- Compressed files generation (to gather deliverables) +- Import outputs from another project (i.e. gerber and drill recipe for a particular manufacturer) +- Multi-project consolidated BoMs +- Sortable HTML BoMs (choose any column) ## Configuration diff --git a/kibot/__main__.py b/kibot/__main__.py index 2ee52ce3..416aa9ac 100644 --- a/kibot/__main__.py +++ b/kibot/__main__.py @@ -54,7 +54,7 @@ __license__ = 'GPL v3+' __email__ = 'stropea@inti.gob.ar' __url__ = 'https://github.com/INTI-CMNB/KiBot/' __status__ = 'stable' -__version__ = '0.9.0' +__version__ = '0.10.0' import os