From 2a39a16391122af2f3d812e478c1c1398c98b972 Mon Sep 17 00:00:00 2001 From: James Westman Date: Fri, 21 Jul 2023 15:06:18 -0500 Subject: [PATCH] Release v0.10.0 --- NEWS.md | 29 +++++++++++++++++++++++++++++ docs/flatpak.rst | 2 +- meson.build | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 544b4a0..efdc77c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,32 @@ +# v0.10.0 + +## Added + +- The hover documentation now includes a link to the documentation for the symbol, if available. +- Added hover documentation for the Adw.Breakpoint extensions, `condition` and `setters`. + +## Changed + +- Decompiling an empty file now produces an empty file rather than an error. +- More relevant documentation is shown when hovering over an identifier literal (such as an enum value or an object ID). + +## Fixed + +- Fixed an issue with the language server not conforming the spec. (seshotake) +- Fixed the signature section of the hover documentation for properties and signals. +- Fixed a bug where documentation was sometimes shown for a different symbol with the same name. +- Fixed a bug where documentation was not shown for accessibility properties that contain `-`. +- Number literals are now correctly parsed as floats if they contain a `.`, even if they are divisible by 1. + +## Removed + +- The `bind-property` keyword has been removed. Use `bind` instead. The old syntax is still accepted with a warning. + +## Documentation + +- Fixed the grammar for Extension, which was missing ExtAdwBreakpoint. + + # v0.8.1 ## Breaking Changes diff --git a/docs/flatpak.rst b/docs/flatpak.rst index f10a944..89355b7 100644 --- a/docs/flatpak.rst +++ b/docs/flatpak.rst @@ -16,7 +16,7 @@ a module in your flatpak manifest: { "type": "git", "url": "https://gitlab.gnome.org/jwestman/blueprint-compiler", - "tag": "v0.8.1" + "tag": "v0.10.0" } ] } diff --git a/meson.build b/meson.build index 0b1f48a..0a0979c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('blueprint-compiler', - version: '0.8.1', + version: '0.10.0', ) subdir('docs')