version bump to 0.2.0

This commit is contained in:
Thomas (Tom) C. Gorordo 2026-05-25 19:09:38 -07:00
parent be82bc4ba5
commit 9e1e5d9642
Signed by: tgorordo
GPG key ID: 0CBED22BB0D94490
4 changed files with 53 additions and 6 deletions

8
src/smithygui.py Normal file
View file

@ -0,0 +1,8 @@
from PySide6.QtWidgets import QApplication, QWidget
app = QApplication(sys.argv)
window = QWidget()
window.show()
app.exec()