Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ldevillez committed May 19, 2024
1 parent 7eef4c8 commit e4d8644
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.11'
cache: poetry
- name: Setup Pages
uses: actions/configure-pages@v2
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## v3.1.0 - 19/05/2024

### Added
- Adding option to specify texmode via a SVG attribute (see --texmode)
- Adding tests to improve the coverage of the code
Expand All @@ -14,7 +23,7 @@
- Fixing typo in github action for pylint and tests
### Security

## v3.0.1 - 14/01/2023
## v3.0.1 - 14/01/2024

### Added
- Version is now displayed in the inkscape extension
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "svg2tikz"
copyright = "2014, Kjell Magne Fauske, Louis Devillez"
author = "Kjell Magne Fauske, Louis Devillez"
release = "3.0.1"
release = "3.1.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion svg2tikz/tikz_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import platform

__version__ = "3.0.1"
__version__ = "3.1.0"
__author__ = "Devillez Louis, Kjell Magne Fauske"
__maintainer__ = "Deville Louis"
__email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion svg2tikz/tikz_export_effect.inx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension>
<name>Export to TikZ path v3.0.1</name>
<name>Export to TikZ path v3.1.0</name>
<id>net.texample.tools.svg.export_tikz.effect</id>
<dependency type="executable" location="extensions">tikz_export.py</dependency>
<param name="tab" type="notebook">
Expand Down
2 changes: 1 addition & 1 deletion svg2tikz/tikz_export_output.inx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension>
<name>Export as TikZ code for use with LaTeX v3.0.1</name>
<name>Export as TikZ code for use with LaTeX v3.1.0</name>
<id>net.texample.tools.svg.export_tikz.output</id>
<dependency type="executable" location="extensions">tikz_export.py</dependency>
<param name="tab" type="notebook">
Expand Down

0 comments on commit e4d8644

Please sign in to comment.