From 78a9e5cdd9eef0b771161a2ce6939922bc3a3bf0 Mon Sep 17 00:00:00 2001 From: John van de Wetering Date: Mon, 19 Feb 2024 20:08:07 +0100 Subject: [PATCH] Version bump --- pyproject.toml | 2 +- zxlive/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ae80bd4b..f62e077d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "zxlive" -version = "0.1.1" +version = "0.2.0" description = "An interactive tool for the ZX-calculus" readme = "README.md" requires-python = ">=3.9" diff --git a/zxlive/app.py b/zxlive/app.py index ca2e0f22..22a06d78 100644 --- a/zxlive/app.py +++ b/zxlive/app.py @@ -47,7 +47,7 @@ def __init__(self) -> None: super().__init__(sys.argv) self.setApplicationName('ZXLive') self.setDesktopFileName('ZXLive') - self.setApplicationVersion('0.1') # TODO: read this from pyproject.toml if possible + self.setApplicationVersion('0.2.0') # TODO: read this from pyproject.toml if possible self.main_window = MainWindow() self.main_window.setWindowIcon(QIcon(get_data('icons/logo.png'))) self.setWindowIcon(self.main_window.windowIcon())