Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Change Log - In newest-release-first order

ktls-utils 1.3.0 2025-10-06
* Implement support for certificates using post-quantum encryption
* Add several new GitHub Action workflows, including a gh-pages generator
* Move /etc/tlshd.conf to /etc/tlshd/config
* Smarter signal handling

ktls-utils 1.2.0 2025-07-11
* Implement Certificate Revocation Lists
* Add a default keyring for NFS consumers
Expand Down
10 changes: 5 additions & 5 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ktls-utils 1.2.0 2025-07-11
* Implement Certificate Revocation Lists
* Add a default keyring for NFS consumers
* Improvements to error reporting and logging
* Manage per-session resources more effectively
ktls-utils 1.3.0 2025-10-06
* Implement support for certificates using post-quantum encryption
* Add several new GitHub Action workflows, including a gh-pages generator
* Move /etc/tlshd.conf to /etc/tlshd/config
* Smarter signal handling
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Notes for ktls-utils 1.2.0
# Release Notes for ktls-utils 1.3.0-rc1

In-kernel TLS consumers need a mechanism to perform TLS handshakes
on a connected socket to negotiate TLS session parameters that can
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Notes for ktls-utils 1.2.0
# Release Notes for ktls-utils 1.3.0-rc1

In-kernel TLS consumers need a mechanism to perform TLS handshakes
on a connected socket to negotiate TLS session parameters that can
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dnl 02110-1301, USA.
dnl

AC_PREREQ([2.69])
AC_INIT([ktls-utils],[1.2.0],[[email protected]])
AC_INIT([ktls-utils],[1.3.0-rc1],[[email protected]])
AM_INIT_AUTOMAKE
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([config.h.in])
Expand Down
Loading