summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2021-09-19 10:48:09 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2021-09-19 10:52:35 +0200
commitd612f3cc675a1838bc5a18061df040ab6405fd31 (patch)
treeca4495a0bb828637f7b4dcf8c6989b24ac6fe846
parentc8518e12a10e04a1d6cd7c3ffd685f08fdca7194 (diff)
downloadgobject-introspection-d612f3cc675a1838bc5a18061df040ab6405fd31.tar.gz
release
-rw-r--r--NEWS11
-rw-r--r--meson.build2
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py2
4 files changed, 14 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index fdaacadd..facff705 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+3.42.0 - 2021-09-19
+-------------------
+
+* meson: Bump minimum meson_version to 0.47.0
+* Expose GObject.Object.run_dispose() :issue:`470`
+* docs: document Gtk.Template. :issue:`396`
+* dev: Add poetry support
+* meson: use main branch for glib subproject
+* Fix some small memory leaks :mr:`178`
+
+
3.40.1 - 2021-03-30
-------------------
diff --git a/meson.build b/meson.build
index 694e9d58..5b53432c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('pygobject', 'c',
- version : '3.41.0',
+ version : '3.42.0',
meson_version : '>= 0.47.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized'])
diff --git a/pyproject.toml b/pyproject.toml
index 52a973e2..dd8e7ea3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "PyGObject"
-version = "3.41.0"
+version = "3.42.0"
description = "Python bindings for GObject Introspection"
authors = ["Christoph Reiter"]
diff --git a/setup.py b/setup.py
index 5a005d67..8de69969 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.41.0"
+PYGOBJECT_VERSION = "3.42.0"
GLIB_VERSION_REQUIRED = "2.56.0"
GI_VERSION_REQUIRED = "1.56.0"
PYCAIRO_VERSION_REQUIRED = "1.16.0"