From fc3f52f69c0beb7d72585e54d7700e1643fbdbfe Mon Sep 17 00:00:00 2001
From: omamkaz
Date: Sun, 14 Jan 2024 09:24:54 +0300
Subject: [PATCH] release 0.3.3, update version info
---
CHANGELOG.md | 2 +-
Qtica/__init__.py | 4 ++--
README.md | 6 +++---
pyproject.toml | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 972184f..bd889ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -535,7 +535,7 @@
- `tools.Settings` **_set_default_path**, when system equal to windows.
-## 0.3.3
+## 0.3.3 (2024-01-14)
### Added
diff --git a/Qtica/__init__.py b/Qtica/__init__.py
index b1ea1dd..5806b47 100644
--- a/Qtica/__init__.py
+++ b/Qtica/__init__.py
@@ -1,6 +1,6 @@
# Qtica
-__version__ = "0.3.2"
-__version_info__ = (0, 3, 2, "", "")
+__version__ = "0.3.3"
+__version_info__ = (0, 3, 3, "", "")
# Python
__minimum_python_version__ = (3, 10)
diff --git a/README.md b/README.md
index e68fe15..9b4f0c2 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
- v0.3.2
+ v0.3.3
# Qtica
@@ -62,10 +62,10 @@ class Window(BehaviorDec):
uid="window",
windowTitle="Welcome Qtica!",
methods = [
- ("resize", QSize(400, 200))
+ ("resize", QSize(400, 200))
],
events = [
- ("mousePress", lambda _: self.update_background())
+ ("mousePress", lambda _: self.update_background())
],
home=Label(
uid="label",
diff --git a/pyproject.toml b/pyproject.toml
index e88ab98..d221c22 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Qtica"
-version = "0.3.2"
+version = "0.3.3"
description = "Qtica is a Python library that offers a lightweight API built around native PySide6. It enables swift GUI prototyping utilizing contemporary declarative UI methods, all within Python."
authors = ["Osama Mohammed Al-zabidi "]
license = "GPL-3.0"