summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am8
-rw-r--r--NEWS35
-rw-r--r--configure.ac2
3 files changed, 40 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index a150180..6060263 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,13 +24,13 @@ sign : dist
gpg --armor --detach-sign --output polkit-$(VERSION).tar.gz.sign polkit-$(VERSION).tar.gz
publish : sign
- scp polkit-$(VERSION).tar.gz polkit-$(VERSION).tar.gz.sign "david@people.freedesktop.org:/srv/www.freedesktop.org/www/software/polkit/releases/"
+ scp polkit-$(VERSION).tar.gz polkit-$(VERSION).tar.gz.sign "jrybar@people.freedesktop.org:/srv/www.freedesktop.org/www/software/polkit/releases/"
publish-docs :
gtkdoc-rebase --html-dir docs/polkit/html --online
- ssh "david@people.freedesktop.org" "mkdir -p /srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
- scp docs/polkit/html/* "david@people.freedesktop.org:/srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
- ssh "david@people.freedesktop.org" "rm -f /srv/www.freedesktop.org/www/software/polkit/docs/latest; ln -s $(VERSION) /srv/www.freedesktop.org/www/software/polkit/docs/latest"
+ ssh "jrybar@people.freedesktop.org" "mkdir -p /srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
+ scp docs/polkit/html/* "jrybar@people.freedesktop.org:/srv/www.freedesktop.org/www/software/polkit/docs/$(VERSION)"
+ ssh "jrybar@people.freedesktop.org" "rm -f /srv/www.freedesktop.org/www/software/polkit/docs/latest; ln -s $(VERSION) /srv/www.freedesktop.org/www/software/polkit/docs/latest"
clean-local :
rm -f *~
diff --git a/NEWS b/NEWS
index 7abbf04..0b1c5e3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,39 @@
--------------
+polkit 0.118
+--------------
+
+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.118.
+
+Highlights:
+ move to mozjs78
+ tarball CI fix
+
+Build requirements
+
+ glib, gobject, gio >= 2.32
+ mozjs-78
+ gobject-introspection >= 0.6.2 (optional)
+ pam (optional)
+ ConsoleKit OR systemd
+
+Changes since polkit 0.117:
+
+ Xi Ruoyao:
+ tarball fixup for distcheck
+
+ Valentin David:
+ updated dependency to mozjs78
+
+Many thanks to all contributors!
+
+Jan Rybar et al.,
+September 8, 2020
+
+--------------
polkit 0.117
--------------
diff --git a/configure.ac b/configure.ac
index c4569f1..4ac2219 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.117], [http://lists.freedesktop.org/mailman/listinfo/polkit-devel], , [http://www.freedesktop.org/wiki/Software/polkit])
+AC_INIT([polkit], [0.118], [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])