diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b3eb2d9..7431cb49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## [Unreleased] +## [v1.0.0] + - Fixed newline-only srv3 events creating empty visual lines (they are now ignored). - Fixed incorrect advance being used during layout of glyphs from non-scalable fonts. Mostly affects emoji which previously took up excessive horizontal space. - Implemented srv3 visual line padding. @@ -24,6 +26,7 @@ - Fixed pixel scale handling in font matching. After the introduction of the new inline layout engine fonts were being unintentionally scaled *twice* on DPIs other than 72. - Added Android NDK font provider for better font matching on Android. -[Unreleased]: https://github.com/afishhh/subrandr/compare/v0.2.2...HEAD +[Unreleased]: https://github.com/afishhh/subrandr/compare/v1.0.0...HEAD +[v1.0.0]: https://github.com/afishhh/subrandr/compare/v0.2.2...v1.0.0 [v0.2.2]: https://github.com/afishhh/subrandr/compare/v0.2.1...v0.2.2 [v0.2.1]: https://github.com/afishhh/subrandr/compare/v0.2.0...v0.2.1 diff --git a/Cargo.lock b/Cargo.lock index aaaab75e..180ea6d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "sbr-macros" -version = "0.2.2" +version = "0.3.0" dependencies = [ "proc-macro2", "quote", @@ -1652,7 +1652,7 @@ dependencies = [ [[package]] name = "sbr-overlay" -version = "0.2.2" +version = "0.3.0" dependencies = [ "anyhow", "clap", @@ -1669,7 +1669,7 @@ dependencies = [ [[package]] name = "sbr-rasterize" -version = "0.2.2" +version = "0.3.0" dependencies = [ "sbr-util", "wgpu", @@ -1677,7 +1677,7 @@ dependencies = [ [[package]] name = "sbr-util" -version = "0.2.2" +version = "0.3.0" [[package]] name = "scopeguard" @@ -1807,7 +1807,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "subrandr" -version = "0.2.2" +version = "1.0.0" dependencies = [ "icu_segmenter", "ndk-sys", diff --git a/Cargo.toml b/Cargo.toml index 34511697..2dc179a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "subrandr" -version.workspace = true +version = "1.0.0" edition.workspace = true [workspace.package] -version = "0.2.2" +# Version number for internal packages with unstable APIs. +version = "0.3.0" edition = "2021" [package.metadata.capi]