mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Release v0.6.0
This commit is contained in:
parent
97f0feaf7e
commit
e2e02dbf1f
3 changed files with 26 additions and 5 deletions
27
NEWS.md
27
NEWS.md
|
@ -1,10 +1,31 @@
|
||||||
# v0.6.0 (unreleased)
|
# v0.6.0
|
||||||
|
|
||||||
## Breaking Changes
|
## Breaking Changes
|
||||||
- Quoted and numeric literals are no longer interchangeable (e.g. `"800"` is
|
- Quoted and numeric literals are no longer interchangeable (e.g. `"800"` is no longer an accepted value for an
|
||||||
no longer an accepted value for an integer type).
|
integer type).
|
||||||
- Boxed types are now type checked.
|
- Boxed types are now type checked.
|
||||||
|
|
||||||
|
## Added
|
||||||
|
- There is now syntax for `GType` literals: the `typeof()` pseudo-function. For example, list stores have an `item-type`
|
||||||
|
property which is now specifiable like this: `item-type: typeof(.MyDataModel)`. See the documentation for more details.
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
- The language server now logs to stderr.
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
- Fix the build on Windows, where backslashes in paths were not escaped. (William Roy)
|
||||||
|
- Remove the syntax for specifying menu objects inline, since it does not work.
|
||||||
|
- Fix a crash in the language server that was triggered in files with incomplete `using Gtk 4.0;` statements.
|
||||||
|
- Fixed compilation on big-endian systems.
|
||||||
|
- Fix an issue in the interactive port tool that would lead to missed files. (Frank Dana)
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
- Fix an issue for documentation contributors where changing the documentation files would not trigger a rebuild.
|
||||||
|
- Document the missing support for Gtk.Label `<attributes>`, which is intentional, and recommend alternatives. (Sonny
|
||||||
|
Piers)
|
||||||
|
- Add a prominent warning that Blueprint is still experimental
|
||||||
|
|
||||||
|
|
||||||
# v0.4.0
|
# v0.4.0
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
|
@ -16,7 +16,7 @@ a module in your flatpak manifest:
|
||||||
{
|
{
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
|
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
|
||||||
"tag": "v0.4.0"
|
"tag": "v0.6.0"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('blueprint-compiler',
|
project('blueprint-compiler',
|
||||||
version: '0.5.0',
|
version: '0.6.0',
|
||||||
)
|
)
|
||||||
|
|
||||||
subdir('docs')
|
subdir('docs')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue