diff --git a/CHANGELOG.md b/CHANGELOG.md index 3714017..a06da80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ defined at the bottom of this file. All notable changes to the python-ly project are documented in this file. +## [0.9.10] - 2026-04-02 + +### Fixed + +- Add more robust logic to find the last Bar in a ScorePart (#180) +- ly2xml, check that list is not empty before working on it (#184). This fixes an error when exporting a LilyPond file to MusicXML: frescobaldi/frescobaldi#1712 + +### Changed + +- License changed from GPL-2.0-or-later to GPL-3.0-or-later (#187) + + ## [0.9.9] - 2025-01-04 ### Changed @@ -255,7 +267,7 @@ All notable changes to the python-ly project are documented in this file. Initial release. - +[0.9.10]: https://github.com/frescobaldi/python-ly/compare/v0.9.9...v0.9.10 [0.9.9]: https://github.com/frescobaldi/python-ly/compare/v0.9.8...v0.9.9 [0.9.8]: https://github.com/frescobaldi/python-ly/compare/v0.9.7...v0.9.8 [0.9.7]: https://github.com/frescobaldi/python-ly/compare/v0.9.6...v0.9.7 diff --git a/ly/pkginfo.py b/ly/pkginfo.py index c000029..93a3488 100644 --- a/ly/pkginfo.py +++ b/ly/pkginfo.py @@ -1,3 +1,3 @@ """Meta-information about the LY package.""" -version = "0.9.9" +version = "0.9.10"