Bumped version to 0.6.1.
Updated CHANGELOG and Debian version. Also minor details in Debian dependencies.
This commit is contained in:
parent
f34cedc4b4
commit
c1d9dd3bfa
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.6.1] - 2020-08-20
|
||||
### Added
|
||||
- More robust behavior on GUI dependent commands.
|
||||
|
||||
### Changed
|
||||
- Incorporated mcpy, no longer a dependency.
|
||||
|
||||
### Fixed
|
||||
- Problems when using `pip install` without --no-compile.
|
||||
At least for user level install.
|
||||
|
||||
## [0.6.0] - 2020-08-18
|
||||
### Added
|
||||
- Internal BoM generator, based on KiBoM code.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
kibot (0.6.1-1) stable; urgency=medium
|
||||
|
||||
* Added more robust behavior on GUI dependent commands.
|
||||
* Incorporated mcpy, no longer a dependency.
|
||||
|
||||
-- Salvador E. Tropea <salvador@inti.gob.ar> Thu, 20 Aug 2020 10:11:16 -0300
|
||||
|
||||
kibot (0.6.0-1) stable; urgency=medium
|
||||
|
||||
* New internal BoM generator.
|
||||
|
|
|
|||
|
|
@ -5,13 +5,13 @@ 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.2
|
||||
X-Python3-Version: >= 3.4
|
||||
|
||||
Package: kibot
|
||||
Architecture: all
|
||||
Multi-Arch: foreign
|
||||
Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.0), python3-wxgtk4.0
|
||||
Recommends: kibom.inti-cmnb, kicad-automation-scripts.inti-cmnb (>= 1.1.2), interactivehtmlbom.inti-cmnb, pcbdraw, python3-xlsxwriter
|
||||
Recommends: kibom.inti-cmnb (>= 1.8.0), kicad-automation-scripts.inti-cmnb (>= 1.1.2), interactivehtmlbom.inti-cmnb, pcbdraw, python3-xlsxwriter
|
||||
Description: KiCad Bot
|
||||
KiBot is a program which helps you to automate the generation of KiCad
|
||||
output documents easily, repeatable, and most of all, scriptably.
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ __license__ = 'GPL v3+'
|
|||
__email__ = 'set@ieee.org'
|
||||
__url__ = 'https://github.com/INTI-CMNB/KiBot/'
|
||||
__status__ = 'stable'
|
||||
__version__ = '0.6.0'
|
||||
__version__ = '0.6.1'
|
||||
|
||||
|
||||
import os
|
||||
|
|
|
|||
Loading…
Reference in New Issue