From 2dab2417e0fbe9a39b7bce45cd8b85571946b980 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Sat, 11 Jul 2020 14:02:09 -0300 Subject: [PATCH] Bumped version to 0.5.0 --- CHANGELOG.md | 2 ++ debian/changelog | 60 +++++++++++++++++++++++++++++++++++++++++++ debian/control | 2 +- kiplot/__version__.py | 2 +- 4 files changed, 64 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0f576bd5..32bbf163a 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.5.0] - 2020-07-11 ### Changed - Removed the "plot" option "check_zone_fills". Use the preflight option. - Drill outputs: map.type and report.filename now should be map and report. diff --git a/debian/changelog b/debian/changelog index fc5349cba..654371b0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,63 @@ +kiplot.inti-cmnb (0.5.0-1) stable; urgency=medium + + * Removed the "plot" option "check_zone_fills". Use the preflight option. + * Drill outputs: map.type and report.filename now should be map and report. + The old mechanism is currently supported, but deprecated. + * Now the command line usage is more clearly documented, but also more strict. + * The --list option doesn't need a PCB file anymore. + Note that passing it is now considered an error. + * Now we test the PCB and/or SCH only when we are doing something that needs + them. + * The layers entry is much more flexible now. + Many changes, read the README.md + * Added PcbDraw output. + * Added -e/--schematic option to specify any schematic (not just derived + from the PCB name. + * Added -x/--example option to generate a complete configuration example. + * Added --example supports --copy-options to copy the plot options from the + PCB file. + * Added help for the supported outputs (--help-list-outputs, --help-outputs + and --help-output) + * Added help for the supported preflights (--help-preflights) + * Better YAML validation. + * Added HPGL options: + - pen_number + - pen_speed + * Added metric_units to DXF options + * Added KiBoM options + - number + - variant + - conf + - separator + * Added the following InteractiveHtmlBom options: + - dark_mode + - hide_pads + - show_fabrication + - hide_silkscreen + - highlight_pin1 + - no_redraw_on_drag + - board_rotation + - checkboxes + - bom_view + - layer_view + - include_tracks + - include_nets + - sort_order + - no_blacklist_virtual + - blacklist_empty_val + - netlist_file + - extra_fields + - normalize_field_case + - variant_field + - variants_whitelist + - variants_blacklist + - dnp_field + * Fixed the `sketch_plot` option is now implemented. + * Fixed 'ignore_unconnected' preflight wasn't working. + * Fixed the report of hwo many ERC/DRC errors we found. + + -- Salvador E. Tropea Sat, 11 Jul 2020 13:56:36 -0300 + kiplot.inti-cmnb (0.4.0-1) stable; urgency=medium * Added STEP 3D model generation diff --git a/debian/control b/debian/control index 15df6133a..9fc48e0d4 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ Package: kiplot.inti-cmnb 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 +Recommends: kibom.inti-cmnb, kicad-automation-scripts.inti-cmnb (>= 1.1.2), interactivehtmlbom.inti-cmnb, pcbdraw Description: KiCad Plotter (KiPlot) KiPlot is a program which helps you to plot your KiCad PCBs to output formats easily, repeatable, and most of all, scriptably. diff --git a/kiplot/__version__.py b/kiplot/__version__.py index 9f59e6c60..e2b23637f 100644 --- a/kiplot/__version__.py +++ b/kiplot/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 4, 0) +VERSION = (0, 5, 0) __version__ = '.'.join(map(str, VERSION))