summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-03-08 15:14:58 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2020-03-08 15:22:21 +0100
commit43cf6c15bfe853c1f9a37d89c1edf416106777ea (patch)
treebc8d2c47ff42d46c75d455e1560b559bc5e04ca0
parente181d41752316cf5cc80ec4e68ad6ac5ce276629 (diff)
downloadpygobject-43cf6c15bfe853c1f9a37d89c1edf416106777ea.tar.gz
release3.36.0
-rw-r--r--NEWS17
-rw-r--r--meson.build2
-rwxr-xr-xsetup.py2
3 files changed, 19 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 0895e120..552738b9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+3.36.0 - 2020-03-08
+-------------------
+
+This will be the last release supporting Python 2.
+
+* pygobject-object: Avoid checking whether NULL is floating :mr:`135` (:user:`Alexandru Băluț <aleb>`)
+* Avoid various new glib deprecation warnings
+* Port to g_object_new_with_properties()
+* Drop Python 2 support on Windows
+* gtk overrides: Drop Menu, MenuItem for Gtk 4 (:user:`Marinus Schraal <mschraal>`)
+* Docs:
+
+ * Update openSUSE instructions (:user:`sharkwouter`)
+ * Add Gaphor to Who is Using PyGObject (:user:`Dan Yeaw <danyeaw>`)
+ * Remove reference to a fixed bug (:user:`Christian Stadelmann <genodeftest>`)
+
+
3.34.0 - 2019-09-09
-------------------
diff --git a/meson.build b/meson.build
index e44f7be0..006fee49 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pygobject', 'c',
- version : '3.35.1',
+ version : '3.36.0',
meson_version : '>= 0.46.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized'])
diff --git a/setup.py b/setup.py
index 0c817f81..19b8cfae 100755
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ from distutils import dir_util, log
from distutils.spawn import find_executable
-PYGOBJECT_VERSION = "3.35.1"
+PYGOBJECT_VERSION = "3.36.0"
GLIB_VERSION_REQUIRED = "2.48.0"
GI_VERSION_REQUIRED = "1.46.0"
PYCAIRO_VERSION_REQUIRED = "1.11.1"