summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-22 09:25:44 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-22 09:25:44 +0100
commite775940669cb6d93f37ddc2b4cd7da446dfa482c (patch)
treefce3dca59b8881aabf8fd1d7ea79bb8d851c2b6f
parent54a5d391f4107bff58b5e1d9cb248975968ea074 (diff)
downloadglibmm-e775940669cb6d93f37ddc2b4cd7da446dfa482c.tar.gz
2.64.22.64.2
-rw-r--r--NEWS11
-rw-r--r--README2
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
4 files changed, 14 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 40991b38..acc96da8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+2.64.2: (stable):
+
+Glib:
+* build_filename(): Fix the template overload
+ (Kjell Ahlstedt) Issue #71 (Kalev Lember)
+
+Build:
+* Meson build: Install generate_extra_defs.h
+ (Kjell Ahlstedt) Issue #70 (Jan Alexander Steffens)
+
+
2.64.1: (stable):
Glib:
diff --git a/README b/README
index 51f662ee..f13cd66a 100644
--- a/README
+++ b/README
@@ -13,7 +13,7 @@ See README.win32
## Building from a release tarball
Extract the tarball and go to the extracted directory:
- $ tar xf glibmm-@GLIBMM_VERSION@.tar.gz
+ $ tar xf glibmm-@GLIBMM_VERSION@.tar.xz
$ cd glibmm-@GLIBMM_VERSION@
It's easiest to build with Meson, if the tarball was made with Meson,
diff --git a/configure.ac b/configure.ac
index 3a067c23..9d291d9a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([glibmm], [2.64.1],
+AC_INIT([glibmm], [2.64.2],
[https://gitlab.gnome.org/GNOME/glibmm/issues],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
diff --git a/meson.build b/meson.build
index a2f0c5cc..1c997c4d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.64.1',
+ version: '2.64.2',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11'