File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 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+
110SecretStorage 3.4.1, 2025-11-11
211===============================
312
Original file line number Diff line number Diff line change 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.
4040pygments_style = 'sphinx'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " SecretStorage"
7- version = " 3.4.1 "
7+ version = " 3.5.0 "
88description = " Python bindings to FreeDesktop.org Secret Service API"
99authors = [{name = " Dmitry Shachnev" , email = " mitya57@gmail.com" }]
1010license = " BSD-3-Clause"
Original file line number Diff line number Diff line change 2929from secretstorage .item import Item
3030from 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__ = [
You can’t perform that action at this time.
0 commit comments