Skip to content

Commit d036431

Browse files
committed
Releasing version 3.4.1
1 parent d583dc6 commit d036431

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
SecretStorage 3.4.0, 2025-09-09
210
===============================
311

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# General information about the project.
2727
project = '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
@@ -34,7 +34,7 @@
3434
# The short X.Y version.
3535
version = '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.
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.0"
7+
version = "3.4.1"
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, 0)
32+
__version_tuple__ = (3, 4, 1)
3333
__version__ = '.'.join(map(str, __version_tuple__))
3434

3535
__all__ = [

0 commit comments

Comments
 (0)