From a64438ac8290d663dfd3ef8c061676f87f7485f7 Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Mon, 15 Jan 2024 14:03:50 -0600 Subject: [PATCH] Release 3.3.0 --- CHANGELOG.md | 9 +++++++-- main.go | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4554ee..51bac16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] Nothing, yet. +## [3.3.0] - 2024-01-15 +- Add ability to configure number of lines used by `format()`. For example, this is useful if the text is intended to render in, a 3-line textbox (instead of the usual 2). + - Additionally, `format()` now accepts named parameters, and `numLines` has been included in `font_config.json`. + ## [3.2.0] - 2023-12-02 ### Added - Add `-lm` option for [C Preprocessor line markers](https://gcc.gnu.org/onlinedocs/gcc-3.0.2/cpp_9.html) to improve error messages. @@ -153,8 +157,9 @@ Nothing, yet. ## [1.0.0] - 2019-08-27 Initial Release -[Unreleased]: https://github.com/huderlem/poryscript/compare/3.2.0...HEAD -[3.1.0]: https://github.com/huderlem/poryscript/compare/3.1.0...3.2.0 +[Unreleased]: https://github.com/huderlem/poryscript/compare/3.3.0...HEAD +[3.3.0]: https://github.com/huderlem/poryscript/compare/3.2.0...3.3.0 +[3.2.0]: https://github.com/huderlem/poryscript/compare/3.1.0...3.2.0 [3.1.0]: https://github.com/huderlem/poryscript/compare/3.0.3...3.1.0 [3.0.3]: https://github.com/huderlem/poryscript/compare/3.0.2...3.0.3 [3.0.2]: https://github.com/huderlem/poryscript/compare/3.0.1...3.0.2 diff --git a/main.go b/main.go index 4bbe4f9..4276aec 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( "github.com/huderlem/poryscript/parser" ) -const version = "3.2.0" +const version = "3.3.0" type mapOption map[string]string