summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2021-03-19 14:43:22 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2021-03-19 14:46:00 +0100
commit4a9f5eb675608eb64075856a9b2ff5cad4a17377 (patch)
tree0b3f65506291fbb71ef84ade4be0031162e6b4d2
parent0a16082c3e092fdccf5499172a4b9dec07aa383d (diff)
downloadpygobject-4a9f5eb675608eb64075856a9b2ff5cad4a17377.tar.gz
release3.40.0
-rw-r--r--MANIFEST.in2
-rw-r--r--NEWS12
-rw-r--r--meson.build2
-rwxr-xr-xsetup.py2
4 files changed, 15 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 72cb04c2..fad3bfd6 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -14,5 +14,5 @@ recursive-include examples *.py *.png *.css *.ui *.gif *.gresource *.jpg *.xml
recursive-include gi *.h meson.build
recursive-include tests *.py *.c *.h *.xml *.supp meson.build
recursive-include docs *.rst *.svg LICENSE *.ico *.png *.css *.py *.dia Makefile
-recursive-include .gitlab-ci *.sh *.rst *.py Dockerfile*
+recursive-include .gitlab-ci *.sh *.rst *.py Dockerfile* lcovrc
recursive-include pygtkcompat meson.build
diff --git a/NEWS b/NEWS
index 812645f5..7ee41ba9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+3.40.0 - 2021-03-19
+-------------------
+
+* GTK 4 compatibility fixes :mr:`148` :mr:`159` :mr:`144` :mr:`145`
+* Python 3.9 and 3.10 compatibility fixes :mr:`152` :mr:`156`
+* New minimal dependency requirements due to dropping support for Ubuntu 16.04 :mr:`151`
+ * Python 3.6+
+ * glib 2.56+
+ * gobject-introspection 1.56+
+ * pycairo 1.16+
+
+
3.38.0 - 2020-09-12
-------------------
diff --git a/meson.build b/meson.build
index f7e9e797..27d4f5f9 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pygobject', 'c',
- version : '3.39.0',
+ version : '3.40.0',
meson_version : '>= 0.46.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized'])
diff --git a/setup.py b/setup.py
index 228b4f66..0a14b3e8 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.39.0"
+PYGOBJECT_VERSION = "3.40.0"
GLIB_VERSION_REQUIRED = "2.56.0"
GI_VERSION_REQUIRED = "1.56.0"
PYCAIRO_VERSION_REQUIRED = "1.16.0"