summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Rybar <jrybar@redhat.com>2021-06-03 16:09:11 +0200
committerJan Rybar <jrybar@redhat.com>2021-06-03 16:09:11 +0200
commit2e5348bf4eb0ef984db32f7f96ec6722d441c6ca (patch)
treed69f3b649331885a9874ff77580af38b63da2b8d
parenta04d13affe0fa53ff618e07aa8f57f4c0e3b9b81 (diff)
downloadpolkit-2e5348bf4eb0ef984db32f7f96ec6722d441c6ca.tar.gz
Release 0.1190.119
-rw-r--r--NEWS47
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 49 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 0b1c5e3..0c91e9a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,51 @@
--------------
+polkit 0.119
+--------------
+
+WARNING WARNING WARNING: This is a prerelease on the road to polkit
+1.0. Public API might change and certain parts of the code still needs
+some security review. Use at your own risk.
+
+This is polkit 0.119.
+
+Highlights:
+ meson build system added
+ CVE-2021-3560 mitigation
+
+Build requirements
+
+ glib, gobject, gio >= 2.32
+ mozjs-78
+ gobject-introspection >= 0.6.2 (optional)
+ pam (optional)
+ ConsoleKit OR systemd
+
+Changes since polkit 0.118:
+
+ Inigo Martinez:
+ meson build system added alongside autotools (many thanks!!)
+
+ Matthias Classen:
+ properties in text listener
+
+ René Genz:
+ typos fixups
+
+ Balázs Úr:
+ Update Hungarian translation
+
+ Hendrik Werner:
+ meson post-install script mod to avoid calling external processes
+
+ Kevin Backhouse, Jan Rybar:
+ CVE-2021-3560 mitigation
+
+Many thanks to all contributors!
+
+Jan Rybar et al.,
+June 3, 2021
+
+--------------
polkit 0.118
--------------
diff --git a/configure.ac b/configure.ac
index 4ac2219..b625743 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59c)
-AC_INIT([polkit], [0.118], [http://lists.freedesktop.org/mailman/listinfo/polkit-devel], , [http://www.freedesktop.org/wiki/Software/polkit])
+AC_INIT([polkit], [0.119], [http://lists.freedesktop.org/mailman/listinfo/polkit-devel], , [http://www.freedesktop.org/wiki/Software/polkit])
AM_INIT_AUTOMAKE([])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([buildutil])
diff --git a/meson.build b/meson.build
index ed75c61..b3702be 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'polkit', ['c', 'cpp'],
- version: '0.117',
+ version: '0.119',
license: 'LGPL2+',
default_options: [
'buildtype=debugoptimized',