aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2018-11-13 16:03:16 +0000
committerDavid Howells <dhowells@redhat.com>2018-11-13 16:28:30 +0000
commit4723f0185d11b13df243ad3cd41fbddfed53b5b1 (patch)
tree39c7976503894e3b528b3c670197db99945446cd
parentd4d758a04616b77048114f7b025ac91b7403e9f7 (diff)
downloadkeyutils-4723f0185d11b13df243ad3cd41fbddfed53b5b1.tar.gz
Move to version 1.6v1.6
Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--keyutils.spec15
-rw-r--r--version.lds10
2 files changed, 23 insertions, 2 deletions
diff --git a/keyutils.spec b/keyutils.spec
index 155779b..07047db 100644
--- a/keyutils.spec
+++ b/keyutils.spec
@@ -1,8 +1,8 @@
%define vermajor 1
-%define verminor 5.11
+%define verminor 6
%define version %{vermajor}.%{verminor}
%define libapivermajor 1
-%define libapiversion %{libapivermajor}.7
+%define libapiversion %{libapivermajor}.8
# % define buildid .local
@@ -99,6 +99,17 @@ make \
%{_libdir}/pkgconfig/libkeyutils.pc
%changelog
+* Tue Nov 13 2018 David Howells <dhowells@redhat.com> - 1.6-1
+- Apply various specfile cleanups from Fedora.
+- request-key: Provide a command line option to suppress helper execution.
+- request-key: Find least-wildcard match rather than first match.
+- Remove the dependency on MIT Kerberos.
+- Fix some error messages
+- keyctl_dh_compute.3: Suggest /proc/crypto for list of available hashes.
+- Fix doc and comment typos.
+- Add public key ops for encrypt, decrypt, sign and verify (needs linux-4.20).
+- Add pkg-config support for finding libkeyutils.
+
* Wed May 9 2018 David Howells <dhowells@redhat.com> - 1.5.11-1
- Add keyring restriction support.
- Add KDF support to the Diffie-Helman function.
diff --git a/version.lds b/version.lds
index 018d4f3..9317222 100644
--- a/version.lds
+++ b/version.lds
@@ -81,3 +81,13 @@ KEYUTILS_1.7 {
keyctl_dh_compute_kdf_alloc;
} KEYUTILS_1.6;
+
+KEYUTILS_1.8 {
+ /* Public key cryptography functions */
+ keyctl_pkey_query;
+ keyctl_pkey_encrypt;
+ keyctl_pkey_decrypt;
+ keyctl_pkey_sign;
+ keyctl_pkey_verify;
+
+} KEYUTILS_1.7;