summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-11-21 11:56:44 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-11-21 11:56:44 +0100
commit45b505228f0896d1f7650b40a54e7a5207b6259b (patch)
tree8d44750c2f4fb742a6d9e3b543d62ec3cb7982fe
parent621d432d52326a4bc5947bf13087ec62d15a41e6 (diff)
downloadglibmm-45b505228f0896d1f7650b40a54e7a5207b6259b.tar.gz
2.64.42.64.4
-rw-r--r--NEWS48
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 50 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index acc96da8..47f18a2e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,51 @@
+2.64.4: (stable):
+
+The tarball for 2.64.4 has been created with 'meson dist'.
+If you build with Autotools from the tarball, please read the relevant
+part of the README file.
+
+Glib:
+* PropertyProxyConnectionNode::connect_changed():
+ Fix using without property name
+ (Daniel Boles) Issue #74 (wswfc), merge request !35
+
+gmmproc:
+* Add optional decl_prefix parameter to _WRAP_GERROR and _WRAP_ENUM
+ Used for adding GLIBMM_API or similar for MS Visual C++
+ (Chun-wei Fan) Merge request !31
+* Allow decorating comparison operators (for Visual Studio builds)
+ (Chun-wei Fan) Merge request !34
+* _CLASS_BOXEDTYPE, _CLASS_OPAQUE_COPYABLE: Fix move assignment
+ (Kjell Ahlstedt) Issue #76 (misos1)
+* Decorate private generated classes with __declspec when building
+ with Visual Studio
+ (Chun-wei Fan) Merge request !40, !42
+* generate_wrap_init.pl.in: Use g_type_ensure(SomeClass::get_type())
+ to ensure that get_type() is called
+ (Kjell Ahlstedt)
+
+Build:
+* Use __declspec(dllexport) consistently when building glibmm with
+ Visual Studio
+ (Chun-wei Fan) Merge request !31
+* Meson build: Set default value of the 'warnings' option to 'min'
+ (Kjell Ahlstedt)
+* Improve NMake support
+ (Chun-wei Fan)
+* Improve Visual Studio support
+ (Chun-wei Fan) Merge request !36
+* docs/reference/: Update for Doxygen >= 1.8.16
+ (Kjell Ahlstedt)
+* Meson build: Fix versioning on macOS
+ (Kjell Ahlstedt) Pull request libsigcplusplus#65 (Tom Schoonjans)
+
+Documentation:
+* Glib::BalancedTree docs: Recommend std::map or std::unordered_map
+ (Kjell Ahlstedt)
+* Meson build: Add missing Glib::Value and Variant documentation
+ (Kjell Ahlstedt)
+
+
2.64.2: (stable):
Glib:
diff --git a/configure.ac b/configure.ac
index 66a5daed..4e31d783 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.64.3],
+AC_INIT([glibmm], [2.64.4],
[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 78b6a1d6..3ce01bd4 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.64.3',
+ version: '2.64.4',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11'