summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2021-10-05 15:29:03 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2021-10-05 15:29:03 +0200
commit7d6cb3ed9dd1366c6595ea56d4d4481887749aa6 (patch)
tree73bf8605792a6202b8c75d69fc3a5fe85623522a
parentf8b8e70fee19487df19019b4f8810715a7c77ad0 (diff)
downloadglibmm-7d6cb3ed9dd1366c6595ea56d4d4481887749aa6.tar.gz
2.66.22.66.2
-rwxr-xr-xNEWS17
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 19 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index d458ff22..cefd6891 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+2.66.2 (stable):
+
+Glib, Gio:
+* 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 !55
+* ListModel::get_object(): Make it work for interface classes
+ (Kjell Ahlstedt) Issue #93 (pumkinpal)
+
+Build:
+* MSVC build: Remove extraneous GLIBMM_API in Glib::ustring
+ (Kjell Ahlstedt) Issue #92 (Christoph Reiter)
+
+
2.66.1 (stable):
Glib:
diff --git a/configure.ac b/configure.ac
index dfe23c96..d87a1def 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.66.1],
+AC_INIT([glibmm], [2.66.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 6e731361..b3c21a6e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.66.1',
+ version: '2.66.2',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11'