[glibmm/glibmm-2-68] 2.68.2



commit 21f246ba4a2d8e66547e0d58c46cd94153fa0296
Author: Kjell Ahlstedt <kjellahlstedt gmail com>
Date:   Wed Oct 6 09:24:36 2021 +0200

    2.68.2

 NEWS         | 19 +++++++++++++++++++
 configure.ac |  2 +-
 meson.build  | 10 +++++++++-
 3 files changed, 29 insertions(+), 2 deletions(-)
---
diff --git a/NEWS b/NEWS
index d98bd7dd..decb17bd 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+2.68.2 (stable):
+
+Glib:
+* Replace all g_quark_from_static_string() by g_quark_from_string()
+  (Kjell Ahlstedt) Issue #96 (小太)
+
+Gio:
+* FileEnumerator: Remove refreturn to avoid memory leak
+  (talisein) Merge request !53
+* ListModel::get_object(): Make it work for interface classes
+  (Kjell Ahlstedt) Issue #93 (pumkinpal)
+* AppInfo::get_all(): Avoid a crash on Windows
+  (Kjell Ahlstedt) Issue #94 (Lawrence37)
+
+Build:
+* MSVC build: Remove extraneous GLIBMM_API in Glib::ustring
+  (Kjell Ahlstedt) Issue #92 (Christoph Reiter)
+
+
 2.68.1 (stable):
 
 Glib:
diff --git a/configure.ac b/configure.ac
index 593af2bb..a1604524 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.68.1],
+AC_INIT([glibmm], [2.68.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 d5ddbc8a..962494bd 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 # This file is part of glibmm.
 
 project('glibmm', 'cpp',
-  version: '2.68.1',
+  version: '2.68.2',
   license: 'LGPLv2.1+',
   default_options: [
     'cpp_std=c++17'
@@ -253,12 +253,20 @@ if can_add_dist_script
     python3.path(), dist_changelog_py,
     project_source_root,
   )
+
+  # Don't distribute these files.
+  dont_distribute = [
+    'HACKING',
+    '.gitlab-ci.yml',
+  ]
+
   # Add build scripts to the distribution directory, and delete .gitignore
   # files and an empty $MESON_PROJECT_DIST_ROOT/build/ directory.
   meson.add_dist_script(
     python3.path(), dist_build_scripts_py,
     project_source_root,
     'untracked' / 'build_scripts',
+    dont_distribute,
   )
 endif
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]