Bumped version to 0.10.0
This commit is contained in:
parent
003fcc82d4
commit
8d5c0109f9
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -63,9 +63,12 @@ KiBot lets you do this. The following picture depicts the data flow:
|
|||
|
||||

|
||||
|
||||
**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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <salvador@inti.gob.ar> 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.
|
||||
|
|
|
|||
|
|
@ -63,9 +63,12 @@ KiBot lets you do this. The following picture depicts the data flow:
|
|||
|
||||

|
||||
|
||||
**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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue