From 5b034ab64195c486eb66f339ad3719bc99eecbb1 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Sun, 28 Jul 2019 15:34:55 +0200 Subject: [PATCH] PyCAM 0.6.4 release --- Changelog | 5 +++++ debian/changelog | 9 +++++++++ pycam/__init__.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index e8f26eda..db664fd0 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +Version 0.6.4 - 2019-07-28 + * Allow direct import of SVG files (without inkscape/pstoedit) + * Improve accuracy when importing non-straight lines + * Fix handling of missing OpenGL support + Version 0.6.3 - 2018-05-01 * Fix import of DXF files with full-circle holes (github #112) * Fix import of DXF files with bezier curves (github #116) diff --git a/debian/changelog b/debian/changelog index 36b408ec..a1dc9802 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pycam (0.6.4) unstable; urgency=medium + + * Allow direct import of SVG files (without inkscape/pstoedit) + * Improve accuracy when importing non-straight lines + * Fix handling of missing OpenGL support + * Update package dependencies + + -- Lars Kruse Sun, 28 Jul 2019 15:33:55 +0200 + pycam (0.6.3) unstable; urgency=medium * DXFImporter: fix handling of closed LWPOLYLINE diff --git a/pycam/__init__.py b/pycam/__init__.py index 6de6ff9c..f5c679f0 100644 --- a/pycam/__init__.py +++ b/pycam/__init__.py @@ -18,7 +18,7 @@ along with PyCAM. If not, see . """ -VERSION = "0.6.3" +VERSION = "0.6.4" FILTER_CONFIG = (("Config files", "*.conf"),) DOC_BASE_URL = "http://pycam.sourceforge.net/%s/"