mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Release v0.10.0
This commit is contained in:
parent
883a136103
commit
2a39a16391
3 changed files with 31 additions and 2 deletions
29
NEWS.md
29
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
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('blueprint-compiler',
|
||||
version: '0.8.1',
|
||||
version: '0.10.0',
|
||||
)
|
||||
|
||||
subdir('docs')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue