From 746d9273ed9b5a7a17c55561f9aa8fdaa389affe Mon Sep 17 00:00:00 2001 From: Andrew Yoon Date: Sun, 7 Jan 2024 16:58:25 -0500 Subject: [PATCH] Release 0.1.14 --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df4b7063..2a6baecb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.1.14 (2024-01-07) +- Fix bug with transform origin on `Text` objects with non-default text alignment. + # 0.1.13 (2023-02-13) - Fix `breakable_length` on all built-in spanners. Users with custom spanners should see [the updated documentation](https://neoscore.org/api/neoscore.core.spanner.html) on proper superclass declaration order. - Make `PaintedObject.parent` no longer a kwarg providing a default `= None`. This aligns the class with how we do this everywhere else. This is technically a breaking change, but it's largely an internal class so we don't expect any users will be affected. diff --git a/pyproject.toml b/pyproject.toml index 79517176..5eaac794 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "neoscore" -version = "0.1.13" +version = "0.1.14" description = "A graphical musical notation library" authors = ["Andrew Yoon "] license = "BSD-3-Clause"