diff --git a/NEWS.md b/NEWS.md index 706f4f0..5bb0864 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,35 @@ +# v0.12.0 + +## Added + +- Add support for Adw.AlertDialog (Sonny Piers) +- Emit warnings for deprecated APIs - lsp and compiler +- lsp: Document symbols +- lsp: "Go to definition" (ctrl+click) +- lsp: Code action for "namespace not imported" diagnostics, that adds the missing import +- Add a formatter - cli and lsp (Gregor Niehl) +- Support for translation domain - see documentation +- cli: Print code actions in error messages + +## Changed + +- compiler: Add a header notice mentionning the file is generated (Urtsi Santsi) +- decompiler: Use single quotes for output + +## Fixed + +- Fixed multine strings support with the escape newline character +- lsp: Fixed the signal completion, which was missing the "$" +- lsp: Fixed property value completion (Ivan Kalinin) +- lsp: Added a missing semantic highlight (for the enum in Gtk.Scale marks) +- Handle big endian bitfields correctly (Jerry James) +- batch-compile: Fix mixing relative and absolute paths (Marco Köpcke ) + +## Documentation + +- Fix grammar for bindings +- Add section on referencing templates + # v0.10.0 ## Added diff --git a/docs/flatpak.rst b/docs/flatpak.rst index 5689163..9eb49ac 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/jwestman/blueprint-compiler", - "tag": "v0.10.0" + "tag": "v0.12.0" } ] } diff --git a/meson.build b/meson.build index 0edd6d8..6e19cab 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('blueprint-compiler', - version: '0.10.1', + version: '0.12.0', ) subdir('docs')