Skip to content

Commit 3a3c006

Browse files
committed
Releasing version 3.5.0
1 parent fed7361 commit 3a3c006

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
SecretStorage 3.5.0, 2025-11-23
2+
===============================
3+
4+
* Added ``timeout`` argument to the ``unlock()`` methods of ``Collection``
5+
and ``Item`` [`#33`_].
6+
* Removed ``int_to_bytes()`` function in favor of the built-in method.
7+
8+
.. _`#33`: https://github.com/mitya57/secretstorage/issues/33
9+
110
SecretStorage 3.4.1, 2025-11-11
211
===============================
312

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
# built documents.
3333
#
3434
# The short X.Y version.
35-
version = '3.4'
35+
version = '3.5'
3636
# The full version, including alpha/beta/rc tags.
37-
release = '3.4.1'
37+
release = '3.5.0'
3838

3939
# The name of the Pygments (syntax highlighting) style to use.
4040
pygments_style = 'sphinx'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "SecretStorage"
7-
version = "3.4.1"
7+
version = "3.5.0"
88
description = "Python bindings to FreeDesktop.org Secret Service API"
99
authors = [{name = "Dmitry Shachnev", email = "mitya57@gmail.com"}]
1010
license = "BSD-3-Clause"

secretstorage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from secretstorage.item import Item
3030
from secretstorage.util import add_match_rules
3131

32-
__version_tuple__ = (3, 4, 1)
32+
__version_tuple__ = (3, 5, 0)
3333
__version__ = '.'.join(map(str, __version_tuple__))
3434

3535
__all__ = [

0 commit comments

Comments
 (0)