summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-08-23 10:57:32 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-08-23 10:57:32 +0200
commitc38afabd92a746a3476e5371acf24a34548b3335 (patch)
treec6a386cc7afa8218a9e4e7154a373bbe6d695e89
parent0a11f3531ba02bc8b589c57de98c2a5e599c0019 (diff)
downloadglibmm-c38afabd92a746a3476e5371acf24a34548b3335.tar.gz
2.73.22.73.2
-rwxr-xr-xNEWS42
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 44 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ecd5169c..039364ff 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,45 @@
+2.73.2 (unstable):
+
+Glib:
+* ustring: Add release()
+ (Kjell Ahlstedt) Issue #101 (PBS)
+
+Gio:
+* ListStore: Don't derive a gtkmm__GListStore GType
+ (Kjell Ahlstedt) Issue glib#2661
+* DBus::Proxy: get_connection(), get_interface_info(): Add refreturn
+ (Kjell Ahlstedt) Issue #102 (우정모)
+* AppInfo: Add get_default_for_type_async/finish(),
+ get_default_for_uri_scheme_async/finish()
+* File: Add make_symbolic_link_async/finish()
+* ListStore: Add property_n_items()
+* Resolver: Add lookup_by_name_with_flags(),
+ lookup_by_name_with_flags_async/finish()
+ (Kjell Ahlstedt)
+
+Documentation:
+* Glib::RefPtr: Improve the documentation
+ (Kjell Ahlstedt) Issue gtkmm#119 (David Marceau)
+* Gio::Action: Improve the documentation
+ (Kjell Ahlstedt) Issue #100 (Diederik van Lierop)
+
+gmmproc:
+* Improved handling of final types
+ (Kjell Ahlstedt) Issue glib#2661
+* Improve handling of gi-docgen syntax in C documentation
+ (Kjell Ahlstedt)
+
+Build:
+* Meson build: Avoid unnecessary configuration warnings
+ (Kjell Ahlstedt)
+* Meson/MSVC: Add more warnings to ignore
+ (Chun-wei Fan)
+* NMake Makefiles: Ensure g[lib|io]mm[config.h|.rc] are created
+ (Chun-wei Fan) Issue #99 (Martin Ammermüller)
+* Require glib-2.0 >= 2.73.2
+ (Kjell Ahlstedt)
+
+
2.72.1 (stable):
Glib:
diff --git a/configure.ac b/configure.ac
index 04ac0460..50929b9f 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.72.1],
+AC_INIT([glibmm], [2.73.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 eafd1c3f..a7a3fd84 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.72.1',
+ version: '2.73.2',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',