From f1a0b4876df1a330b70f7d49af9eee61126e842e Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Fri, 16 Aug 2024 13:40:35 -0400 Subject: [PATCH] =?UTF-8?q?bump(release):=20v2.6.0=20=E2=86=92=20v3.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 4 ++-- src/valentina/__version__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0c4d44a..2a036f9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v3.0.0 (2024-08-16) + +### Feat + +- **webui**: initial web ui release (#171) + ## v2.6.0 (2024-06-24) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 5cf4c89d..73d700cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "valentina" readme = "README.md" repository = "https://github.com/natelandau/valentina" - version = "2.6.0" + version = "3.0.0" [tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts valentina = "valentina.main:app" @@ -74,7 +74,7 @@ changelog_merge_prerelease = true tag_format = "v$version" update_changelog_on_bump = true - version = "2.6.0" + version = "3.0.0" version_files = ["pyproject.toml:version", "src/valentina/__version__.py:__version__"] [tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report diff --git a/src/valentina/__version__.py b/src/valentina/__version__.py index bb80eb5c..ad4b90ca 100644 --- a/src/valentina/__version__.py +++ b/src/valentina/__version__.py @@ -1,3 +1,3 @@ """Valentina version.""" -__version__ = "2.6.0" +__version__ = "3.0.0"