Skip to content

Commit 290e814

Browse files
committed
Update to v0.2.4
1 parent 7682dd1 commit 290e814

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

docs/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

3-
This file contains changes made to `Python Password` program.
3+
This file contains changes made to **Python Password** program.
4+
5+
## [0.2.4] - 2020-05-19
6+
### Added
7+
- Chosen theme is now saving.
8+
### Changed
9+
- Deleting passwords from context menu is forced.
10+
- Dialogs about invalid password input are more detailed.
11+
### Fixed
12+
- Bug #3: It was possible to save tab or other whitespaces as password alias of value.
413

514
## [0.2.3] - 2020-05-18
615
### Added
@@ -51,6 +60,7 @@ First usable pre-release.
5160
- Set password option.
5261
- Get password option.
5362

63+
[0.2.4]: https://github.com/AnonymousX86/Python-Password/releases/tag/v0.2.4-alpha
5464
[0.2.3]: https://github.com/AnonymousX86/Python-Password/releases/tag/v0.2.3-alpha
5565
[0.2.2]: https://github.com/AnonymousX86/Python-Password/releases/tag/v0.2.2-alpha
5666
[0.2.1]: https://github.com/AnonymousX86/Python-Password/releases/tag/v0.2.1-alpha

python_password/PyPassword.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, **kwargs):
7575
self.passwords = []
7676
self.info = {
7777
'name': 'Python Password',
78-
'version': '0.2.3',
78+
'version': '0.2.4',
7979
'author': 'Jakub Suchenek',
8080
'github': 'https://github.com/AnonymousX86/Python-Password',
8181
'faq': 'https://github.com/AnonymousX86/Python-Password/blob/master/docs/FAQ.md',

setup.py

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

1010
setup(
1111
name='Python Password',
12-
version='0.2.3',
12+
version='0.2.4',
1313
description='Simple password storing app.',
1414
long_description=long_description,
1515
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)