Skip to content

Commit

Permalink
release 0.3.3, update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
omamkaz committed Jan 14, 2024
1 parent e4d37f2 commit fc3f52f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@
- `tools.Settings` **_set_default_path**, when system equal to windows.


## 0.3.3
## 0.3.3 (2024-01-14)

### Added

Expand Down
4 changes: 2 additions & 2 deletions Qtica/__init__.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</p>

<h2 align="center">
v0.3.2
v0.3.3
</h2>

# Qtica
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit fc3f52f

Please sign in to comment.