NEWS.md: update notes for 0.9.1

This commit is contained in:
Johan Malm 2025-07-31 21:37:03 +01:00 committed by Johan Malm
parent 9fe1509e33
commit 6c50a62817

29
NEWS.md
View file

@ -9,6 +9,7 @@ The format is based on [Keep a Changelog]
| Date | All Changes | wlroots version | lines-of-code |
|------------|---------------|-----------------|---------------|
| 2025-08-02 | [0.9.1] | 0.19.0 | 28605 |
| 2025-07-11 | [0.9.0] | 0.19.0 | 28586 |
| 2025-05-02 | [0.8.4] | 0.18.2 | 27679 |
| 2025-02-21 | [0.8.3] | 0.18.2 | 27671 |
@ -75,6 +76,28 @@ There are some regression warnings worth noting for the switch to wlroots 0.19:
## [unreleased]
## [0.9.1]
This is an earlier-than-usual release containinig bug fixes only. It has been
done on a separate branch to avoid the inclusion of refactoring and new
features.
```
0.9.1 <--- bug-fixes only
/
/
0.8.4--------0.9.0-------- <-- master
```
### Fixed
- Prevent interaction with un-initialized xdg-shell windows after unmap to fix a
bug exposed by `wlroots-0.19.0` resulting in a compositor crash in certain
(unusual) circumstances [#2948] [#2937] [#2944] @Consolatis
- Fix double-free in `img_svg_render()` failure path [#2910] @jlindgren90
- Fix swapped width/height in XWayland client `_NET_WM_ICON` stride calculation
[#2909] @jlindgren90
## [0.9.0]
The main focus has been to port labwc to wlroots 0.19 [#2388] and fix associated
@ -2150,6 +2173,7 @@ Compile with wlroots 0.12.0 and wayland-server >=1.16
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[unreleased]: https://github.com/labwc/labwc/compare/0.9.0...HEAD
[0.9.1]: https://github.com/labwc/labwc/compare/0.9.0...0.9.1
[0.9.0]: https://github.com/labwc/labwc/compare/0.8.4...0.9.0
[0.8.4]: https://github.com/labwc/labwc/compare/0.8.3...0.8.4
[0.8.3]: https://github.com/labwc/labwc/compare/0.8.2...0.8.3
@ -2574,6 +2598,11 @@ Compile with wlroots 0.12.0 and wayland-server >=1.16
[#2886]: https://github.com/labwc/labwc/pull/2886
[#2887]: https://github.com/labwc/labwc/pull/2887
[#2891]: https://github.com/labwc/labwc/pull/2891
[#2909]: https://github.com/labwc/labwc/pull/2909
[#2910]: https://github.com/labwc/labwc/pull/2910
[#2914]: https://github.com/labwc/labwc/pull/2914
[#2937]: https://github.com/labwc/labwc/pull/2937
[#2939]: https://github.com/labwc/labwc/pull/2939
[#2943]: https://github.com/labwc/labwc/pull/2943
[#2944]: https://github.com/labwc/labwc/pull/2944
[#2948]: https://github.com/labwc/labwc/pull/2948