From 86ed549d494c6723b1ee238ea5349e129db025a2 Mon Sep 17 00:00:00 2001 From: ldevillez Date: Tue, 12 Dec 2023 19:54:14 +0100 Subject: [PATCH] FEAT: update version --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- svg2tikz/tikz_export.py | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04296cb..9935a14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## v3.0.0 - 12/12/2023 + ### Added - Adding support for text-anchor - Rounding of all values + options to change the number of after decimal diff --git a/README.md b/README.md index 3c60970..dc27d44 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Documentation][documentation-badge]][documentation-url] [![PyPI version](https://badge.fury.io/py/svg2tikz.svg)](https://badge.fury.io/py/svg2tikz) -# SVG2TikZ 2.0.X (Inkscape 1.x.x compatible) +# SVG2TikZ 3.0.X (Inkscape 1.x.x compatible) SVG2TikZ, formally known as Inkscape2TikZ ,are a set of tools for converting SVG graphics to TikZ/PGF code. diff --git a/docs/conf.py b/docs/conf.py index 4a20757..59db9ee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "svg2tikz" copyright = "2014, Kjell Magne Fauske, Louis Devillez" author = "Kjell Magne Fauske, Louis Devillez" -release = "2.1.0" +release = "3.0.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 1a83948..75138db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "svg2tikz" -version = "2.1.0" +version = "3.0.0" description = "Tools for converting SVG graphics to TikZ/PGF code" authors = ["ldevillez ", " Kjell Magne Fauske "] maintainers = ["ldevillez "] diff --git a/svg2tikz/tikz_export.py b/svg2tikz/tikz_export.py index 751bbcc..f9b3300 100644 --- a/svg2tikz/tikz_export.py +++ b/svg2tikz/tikz_export.py @@ -16,7 +16,7 @@ import platform -__version__ = "2.1.0" +__version__ = "3.0.0" __author__ = "Devillez Louis, Kjell Magne Fauske" __maintainer__ = "Deville Louis" __email__ = "louis.devillez@gmail.com"