File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1+ SecretStorage 3.4.1, 2025-11-11
2+ ===============================
3+
4+ * Make sure public key length is exactly 128 bytes [`#48`_].
5+ This fixes ``Client public key size is invalid`` error from KWallet.
6+
7+ .. _`#48`: https://github.com/mitya57/secretstorage/issues/48
8+
19SecretStorage 3.4.0, 2025-09-09
210===============================
311
Original file line number Diff line number Diff line change 2525
2626# General information about the project.
2727project = 'SecretStorage'
28- copyright = '2022 , Dmitry Shachnev'
28+ copyright = '2025 , Dmitry Shachnev'
2929
3030# The version info for the project you're documenting, acts as replacement for
3131# |version| and |release|, also used in various other places throughout the
3434# The short X.Y version.
3535version = '3.4'
3636# The full version, including alpha/beta/rc tags.
37- release = '3.4.0 '
37+ release = '3.4.1 '
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.0 "
7+ version = " 3.4.1 "
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 , 0 )
32+ __version_tuple__ = (3 , 4 , 1 )
3333__version__ = '.' .join (map (str , __version_tuple__ ))
3434
3535__all__ = [
You can’t perform that action at this time.
0 commit comments