summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-12 18:55:39 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-12 18:55:39 +0100
commit8dd75b3bf85b3ee7500683c9766412ccd1c1bf29 (patch)
tree180d31c1ff137db8c15e9258bbd17d3dbfdba29a
parent7a8d94e6fd8491aabca0f1c0487f4555329b4997 (diff)
downloadglibmm-2-66.tar.gz
-rwxr-xr-xNEWS23
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 25 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 3be4c08f..ead0d3e5 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,26 @@
+2.66.6 (stable):
+
+Glib:
+* Dispatcher: Don't warn when a Dispatcher is deleted while
+ messages are pending.
+ (Kjell Ahlstedt) Issue #108 (PBS)
+
+Gio:
+* NetworkMonitor::get_default(): Add refreturn
+ (Kjell Ahlstedt) Issue #104 (ilya-fedin)
+
+gmmproc:
+* generate_wrap_init.pl.in: Disable warning C4273 on Visual Studio
+ (Chun-wei Fan) Merge request !57
+
+Meson build:
+* Detect if we build from a git subtree
+ (William Roy) Merge request gtkmm!72
+ (Kjell Ahlstedt) Issue gtkmm#131 (William Roy)
+* Don't copy files with configure_file()
+ (Kjell Ahlstedt)
+
+
2.66.5 (stable):
Gio:
diff --git a/configure.ac b/configure.ac
index 726ef63a..1bbad112 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.5],
+AC_INIT([glibmm], [2.66.6],
[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 d62f689f..8caf01cd 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.66.5',
+ version: '2.66.6',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11',