summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-09-12 19:52:23 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2020-09-12 19:52:23 +0200
commit63825d8eb0acbaf516fcd5064a891f31534dc4e5 (patch)
tree99c68d4d34cc2585ddface63b403b6424b6ce44b
parent7d5f4cd41ee0221c13842ab6323b7a016df02c7e (diff)
downloadpygobject-3.38.0.tar.gz
release3.38.0
-rw-r--r--NEWS26
-rw-r--r--meson.build2
-rwxr-xr-xsetup.py2
3 files changed, 17 insertions, 13 deletions
diff --git a/NEWS b/NEWS
index 931a6433..812645f5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,19 +1,23 @@
-3.xx.x - ????-??-??
+3.38.0 - 2020-09-12
-------------------
-Python 2 is no longer supported.
+* Python 2 is no longer supported.
-Note for distros/packagers:
- In case you want to keep Python 2 support you'll likely split any existing
- package into a Python 2 and 3 version. Since these aren't parallel installable
- here are some recommendations on how to make it work:
+ Note for distros/packagers:
+ In case you want to keep Python 2 support you'll likely split any existing
+ package into a Python 2 and 3 version. Since these aren't parallel installable
+ here are some recommendations on how to make it work:
- * Build the devel package from the Python 3 source package
- * Drop the headers/.pc files from the Python 2 build/package
- * Make sure no Python 2 using package depends on the devel package
- (@Arch: gnumeric can be build without Python support for example)
+ * Build the devel package from the Python 3 source package
+ * Drop the headers/.pc files from the Python 2 build/package
+ * Make sure no Python 2 using package depends on the devel package
+ (@Arch: gnumeric can be build without Python support for example)
- See :issue:`392` for details
+ See :issue:`392` for details
+
+* meson: Make the `pycairo` option a feature :mr:`146` :mr:`147`
+* gdk overrides: Fix wrapping of scroll events :mr:`141`
+* Add overrides for Gtk.Button set/get_focus_on_click :mr:`132`
3.36.1 - 2020-05-06
diff --git a/meson.build b/meson.build
index 7d543216..4b7b75a3 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pygobject', 'c',
- version : '3.37.1',
+ version : '3.38.0',
meson_version : '>= 0.46.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized'])
diff --git a/setup.py b/setup.py
index 57768ed4..bc86f168 100755
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ from distutils import dir_util, log
from distutils.spawn import find_executable
-PYGOBJECT_VERSION = "3.37.1"
+PYGOBJECT_VERSION = "3.38.0"
GLIB_VERSION_REQUIRED = "2.48.0"
GI_VERSION_REQUIRED = "1.46.0"
PYCAIRO_VERSION_REQUIRED = "1.11.1"