diff --git a/NEWS b/NEWS index d58eda196..f89684c53 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.24.1 (stable) + * rpc: Support protocol version negotiation [PR#371, PR#385] + * proxy: Support copying attribute array recursively [PR#368] + * Link libp11-kit so that it cannot unload [PR#383] + * Translation improvements [PR#381] + * Build fixes [PR#372, PR#373, PR#375, PR#377, PR#384, PR#407] + 0.24.0 (stable) * Use inclusive language on certificate distrust. Note: This changes the directory and attribute names to distrust certain CAs to diff --git a/configure.ac b/configure.ac index 407a0a170..be3af5509 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.61) AC_INIT([p11-kit], - [0.24.0], + [0.24.1], [https://github.com/p11-glue/p11-kit/issues], [p11-kit], [https://p11-glue.github.io/p11-glue/p11-kit.html]) diff --git a/meson.build b/meson.build index 79323e483..64bb3429a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('p11-kit', 'c', - version: '0.24.0', + version: '0.24.1', meson_version: '>= 0.49') version_arr = meson.project_version().split('.')