summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]NEWS26
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 28 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ada19008..d458ff22 100644..100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+2.66.1 (stable):
+
+Glib:
+* Variant: Fix template constructors so they work with C++20
+ (Magne Oestlyngen) Merge request !50
+
+Build:
+* Meson build: Use relative paths to untracked/
+ (Kjell Ahlstedt) Merge request gtkmm!61 (Mingli Yu)
+* MSVC build: Export Glib::manage()
+ (Chun-wei Fan) Merge request !48
+* [gio|glib]mmconfig.h.*: Don't dllimport on MinGW
+ (Chun-wei Fan) Issue gtkmm#90 (Lukas K.)
+ (Chun-wei Fan) Merge reqest !49
+* Meson build: examples and tests: Add dependency('threads')
+ (Kjell Ahlstedt)
+* Meson build: Make it possible to use glibmm as a subproject
+ (Kjell Ahlstedt)
+* Meson build: No implicit_include_directories
+ (Kjell Ahlstedt)
+* Meson build: Make quiet installations possible
+ (Kjell Ahlstedt)
+* MSVC build: Avoid exporting classes with std::string members
+ (Chun-wei Fan) Merge reqest !52
+
+
2.66.0: (stable):
The tarball for 2.66.0 has been created with 'meson dist'.
diff --git a/configure.ac b/configure.ac
index e51eb808..dfe23c96 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.0],
+AC_INIT([glibmm], [2.66.1],
[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 8413fecb..6e731361 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.66.0',
+ version: '2.66.1',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11'