Bump version to v3.2.0

This commit is contained in:
jaseg 2026-03-10 22:42:50 +01:00
parent bf704e0f35
commit 5c6fc59f68
4 changed files with 5 additions and 5 deletions

View file

@ -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 = [

View file

@ -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'}

View file

@ -31,7 +31,7 @@
namespace gerbolyze {
constexpr char lib_version[] = "3.1.9";
constexpr char lib_version[] = "3.2.0";
typedef std::function<std::vector<d2p> *(double, double, double)> sampling_fun;

View file

@ -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+" }