Skip to content

Commit

Permalink
Releasing version 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mitya57 committed Aug 13, 2022
1 parent 0205032 commit 3993fc7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
SecretStorage 3.3.3, 2022-08-13
===============================

* Handle case when CreateItem method returns a prompt [`#39`_].
* Reformatted code in accordance with :PEP:`8` standard.

.. _`#39`: https://github.com/mitya57/secretstorage/issues/39

SecretStorage 3.3.2, 2022-04-19
===============================

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# The short X.Y version.
version = '3.3'
# The full version, including alpha/beta/rc tags.
release = '3.3.2'
release = '3.3.3'

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down
2 changes: 1 addition & 1 deletion secretstorage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
ItemNotFoundException, PromptDismissedException
from secretstorage.util import add_match_rules

__version_tuple__ = (3, 3, 2)
__version_tuple__ = (3, 3, 3)
__version__ = '.'.join(map(str, __version_tuple__))

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = SecretStorage
version = 3.3.2
version = 3.3.3
description = Python bindings to FreeDesktop.org Secret Service API
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down

0 comments on commit 3993fc7

Please sign in to comment.