Skip to content

Commit 6aaa677

Browse files
committed
version: 1.54.0
1 parent c047c33 commit 6aaa677

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
* `bind_config` and `unbind_config` methods on `AbstractBase` that bind `SIGHUP` to a handler triggering a `"config"` event, allowing agents to react to configuration reload signals (eg: TLS certificate reload)
12+
*
1313

1414
### Changed
1515

16-
* `SIGHUP` no longer raises `SystemExit` via `bind_signals` — it is now reserved for the new `"config"` reload handler. Operators relying on `SIGHUP` for shutdown should switch to `SIGINT`, `SIGTERM` or `SIGQUIT`
17-
* Add `NO_SUITABLE_KEY_SHARE` to `SSL_SILENT_REASONS`
16+
*
1817

1918
### Fixed
2019

2120
*
2221

22+
## [1.54.0] - 2026-04-29
23+
24+
### Added
25+
26+
* `bind_config` and `unbind_config` methods on `AbstractBase` that bind `SIGHUP` to a handler triggering a `"config"` event, allowing agents to react to configuration reload signals (eg: TLS certificate reload)
27+
28+
### Changed
29+
30+
* `SIGHUP` no longer raises `SystemExit` via `bind_signals` — it is now reserved for the new `"config"` reload handler. Operators relying on `SIGHUP` for shutdown should switch to `SIGINT`, `SIGTERM` or `SIGQUIT`
31+
* Add `NO_SUITABLE_KEY_SHARE` to `SSL_SILENT_REASONS`
32+
2333
## [1.53.13] - 2026-04-28
2434

2535
### Fixed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def read_file(path):
5757

5858
setuptools.setup(
5959
name="netius",
60-
version="1.53.13",
60+
version="1.54.0",
6161
author="Hive Solutions Lda.",
6262
author_email="development@hive.pt",
6363
description="Netius System",

src/netius/base/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
identification of both the clients and the services this
5959
value may be prefixed or suffixed """
6060

61-
VERSION = "1.53.13"
61+
VERSION = "1.54.0"
6262
""" The version value that identifies the version of the
6363
current infra-structure, all of the services and clients
6464
may share this value """

0 commit comments

Comments
 (0)