summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS12
-rw-r--r--README2
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
4 files changed, 15 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 4ec5aa13..d3a8d5f8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+2.65.3: (unstable):
+Distro packagers should probably not package this yet.
+
+Tests:
+* glibmm_buildfilename: Add some tests
+ (Kjell Ahlstedt) Issue #71 (Kalev Lember)
+
+Build:
+* Meson build: Install generate_extra_defs.h
+ (Kjell Ahlstedt) Issue #70 (Jan Alexander Steffens)
+
+
2.65.2: (unstable):
Distro packagers should probably not package this yet.
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 e1b8849f..24bc614b 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.65.2],
+AC_INIT([glibmm], [2.65.3],
[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 5166dd6c..5a6e293a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.65.2',
+ version: '2.65.3',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17'