From 07c9c9df9cd1b6b4454ecba21ee58211e9144a4b Mon Sep 17 00:00:00 2001 From: James Westman Date: Tue, 1 Jul 2025 21:06:21 -0500 Subject: [PATCH] Release v0.18.0 --- NEWS.md | 19 +++++++++++++++++++ docs/flatpak.rst | 2 +- meson.build | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index a12dab0..715aab4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,22 @@ +# v0.18.0 + +## Added +- GtkBuilder now allows menus to be specified inline as a property value. Blueprint now supports this as well. + +## Fixed +- Made reference_docs.json build reproducible (Sertonix) +- Correctly emit XML for nested templates (Tom Greig) +- Fix crash in language server while typing an AdwBreakpointSetter rule +- Update URLs after move to GNOME namespace on GitLab +- Fix crash when decompiling a lookup tag with no type attribute +- Fix incorrect result when decompiling a signal that has the template as its object +- Fix an incorrect "Duplicate object ID" error when an Adw.AlertDialog response had the same ID as an object + +## Documentation +- Updated syntax in the example on the Overview page (Chris Mayo) +- Added examples of Gtk.Scale marks (Matthijs Velsink) +- Corrected errors in the index on the Extensions page (Matthijs Velsink) + # v0.16.0 ## Added diff --git a/docs/flatpak.rst b/docs/flatpak.rst index 8081c8d..b2f42a4 100644 --- a/docs/flatpak.rst +++ b/docs/flatpak.rst @@ -17,7 +17,7 @@ a module in your flatpak manifest: { "type": "git", "url": "https://gitlab.gnome.org/GNOME/blueprint-compiler", - "tag": "v0.16.0" + "tag": "v0.18.0" } ] } diff --git a/meson.build b/meson.build index 635fac5..405ed10 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('blueprint-compiler', - version: '0.17.0', + version: '0.18.0', ) prefix = get_option('prefix')