Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdwetering committed Feb 19, 2024
1 parent e8c5f01 commit 78a9e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion zxlive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 78a9e5c

Please sign in to comment.