summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS13
-rw-r--r--configure.ac2
2 files changed, 12 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index f891e4d..4aada42 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,16 @@
-dbus Python Bindings 1.2.12 (UNRELEASED)
+dbus Python Bindings 1.2.12 (2019-09-12)
========================================
-...
+The “spinal bap” release.
+
+Fixes:
+
+• Don't save and restore the exception indicator when called from C code.
+ This avoided "returned a result with an error set" errors under some
+ circumstances, but also caused a regression for code that relies on
+ being able to terminate the program by calling sys.exit() or raising
+ SystemExit from a dbus-python method. In particular, this broke one of
+ libsecret's unit tests. (Debian #940087; Simon McVittie)
D-Bus Python Bindings 1.2.10 (2019-09-02)
=========================================
diff --git a/configure.ac b/configure.ac
index 7f82ab6..0815878 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ dnl The dbus-python version number
m4_define(dbus_python_major_version, 1)
m4_define(dbus_python_minor_version, 2)
dnl Micro version is odd for non-releases
-m4_define(dbus_python_micro_version, 11)
+m4_define(dbus_python_micro_version, 12)
AC_INIT([dbus-python],
dbus_python_major_version.dbus_python_minor_version.dbus_python_micro_version,