From 5c6fc59f685f85183b86f1b573b63c7cfa98a9e7 Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 10 Mar 2026 22:42:50 +0100 Subject: [PATCH] Bump version to v3.2.0 --- pyproject.toml | 4 ++-- src/gerbolyze/__init__.py | 2 +- svg-flatten/include/gerbolyze.hpp | 2 +- svg-flatten/pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1c94c77..6f313e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "gerbolyze" -version = "3.1.9" +version = "3.2.0" description = """A high-resolution image-to-PCB converter. Gerbolyze plots SVG, PNG and JPG onto existing gerber \ files. It handles almost the full SVG spec and deals with text, path outlines, patterns, arbitrary paths with \ self-intersections and holes, etc. fully automatically. It can vectorize raster images both by contour tracing and by \ @@ -16,7 +16,7 @@ dependencies = [ 'python-slugify', 'lxml', 'click', - 'svg-flatten-wasi >= 3.1.9', + 'svg-flatten-wasi >= 3.2.0', 'resvg-wasi >= 0.47.0'] authors = [ diff --git a/src/gerbolyze/__init__.py b/src/gerbolyze/__init__.py index 86162a6..e595c8a 100755 --- a/src/gerbolyze/__init__.py +++ b/src/gerbolyze/__init__.py @@ -21,7 +21,7 @@ import click import gerbonara as gn -__version__ = '3.1.9' +__version__ = '3.2.0' ET_NS= {'svg': 'http://www.w3.org/2000/svg', 'inkscape': 'http://www.inkscape.org/namespaces/inkscape'} diff --git a/svg-flatten/include/gerbolyze.hpp b/svg-flatten/include/gerbolyze.hpp index d3757d2..5289f45 100644 --- a/svg-flatten/include/gerbolyze.hpp +++ b/svg-flatten/include/gerbolyze.hpp @@ -31,7 +31,7 @@ namespace gerbolyze { - constexpr char lib_version[] = "3.1.9"; + constexpr char lib_version[] = "3.2.0"; typedef std::function *(double, double, double)> sampling_fun; diff --git a/svg-flatten/pyproject.toml b/svg-flatten/pyproject.toml index 7af7485..b999d14 100644 --- a/svg-flatten/pyproject.toml +++ b/svg-flatten/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "svg-flatten-wasi" -version = "3.1.9" +version = "3.2.0" description = "svg-flatten SVG downconverter" readme = { file = "README.rst", content-type = "text/x-rst" } license = { text = "AGPLv3+" }