From ae0255b78d0da2a524706f924a867cdeee109599 Mon Sep 17 00:00:00 2001 From: ldevillez Date: Thu, 19 Sep 2024 11:28:52 +0200 Subject: [PATCH] v0.7.2 --- CHANGELOG.md | 12 ++++++++---- pyproject.toml | 2 +- pyswtools/main.py | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfbe376..39e2fea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,21 @@ # Changelog +## v0.7.2 - 2024/09/19 +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + ## [Unreleased] ### Added - Adding the type of component into the display of the stat module - Adding a flag to filter the type of components - Adding the number of drawings using the parts - Adding an option to export stats module to CSV or to clipboard -### Changed -### Deprecated -### Removed ### Fixed - Fixing an issue with the configuration name removal. Some parts were not correctly counted in the tree display. -### Security ## v0.7.1 - 2024/09/12 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 622958d..556aa26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyswtools" -version = "0.7.1" +version = "0.7.2" description = "Set of tools to improve Solidworks usage" authors = ["ldevillez "] license = "GNU General Public License" diff --git a/pyswtools/main.py b/pyswtools/main.py index f63151b..4129e95 100644 --- a/pyswtools/main.py +++ b/pyswtools/main.py @@ -12,7 +12,7 @@ from .clean.main import clean -__version__ = "0.7.1" +__version__ = "0.7.2" __author__ = "Devillez Louis" __maintainer__ = "Devillez Louis" __email__ = "louis.devillez@gmail.com"