Skip to content

Commit dde55fc

Browse files
committed
bump: version 0.99.0 → 0.100.0
1 parent a5f3c0e commit dde55fc

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.100.0 (2020-07-20)
2+
3+
### Feat
4+
5+
- **ToolTip**: add show_text method
6+
- **GuiApplication**: add set_override_cursor / restore_override_cursor methods
7+
- **GuiApplication**: add override_cursor context manager
8+
19
## v0.99.0 (2020-07-18)
210

311
### Refactor

docs/changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.100.0 (2020-07-20)
2+
3+
### Feat
4+
5+
- **ToolTip**: add show_text method
6+
- **GuiApplication**: add set_override_cursor / restore_override_cursor methods
7+
- **GuiApplication**: add override_cursor context manager
8+
19
## v0.99.0 (2020-07-18)
210

311
### Refactor

prettyqt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = """Philipp Temminghoff"""
66
__email__ = "phil65@kodi.tv"
7-
__version__ = "0.99.0"
7+
__version__ = "0.100.0"
88

99

1010
__all__ = [

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "PrettyQt"
3-
version = "0.99.0"
3+
version = "0.100.0"
44
description = "A pythonic layer on top of qtpy"
55
readme = 'docs/index.md'
66
repository = "https://github.com/phil65/prettyqt"
@@ -124,7 +124,7 @@ exclude = '''
124124
'''
125125
[tool.commitizen]
126126
name = "cz_conventional_commits"
127-
version = "0.99.0"
127+
version = "0.100.0"
128128
tag_format = "v$version"
129129
version_files = [
130130
"prettyqt/__init__.py:__version__",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
packages=find_packages(),
4141
test_suite="tests",
4242
url="https://github.com/phil65/prettyqt",
43-
version="0.99.0",
43+
version="0.100.0",
4444
zip_safe=False,
4545
)

0 commit comments

Comments
 (0)