From f8e259d22913d0c3240904071c9744420c5a206a Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Sun, 24 Nov 2024 09:39:45 -0600 Subject: [PATCH] Release 3.5.1 --- CHANGELOG.md | 7 ++++++- main.go | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21bbc14..8428e31 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.5.1] - 2024-11-24 +### Fixed +- Fix bug where `\N` didn't respect `numLines` when using `format()`. + ## [3.5.0] - 2024-11-10 ### Added - Movement can now be inlined within commands using a special `moves()` operator, similar to text. For example: @@ -179,7 +183,8 @@ Nothing, yet. ## [1.0.0] - 2019-08-27 Initial Release -[Unreleased]: https://github.com/huderlem/poryscript/compare/3.5.0...HEAD +[Unreleased]: https://github.com/huderlem/poryscript/compare/3.5.1...HEAD +[3.5.0]: https://github.com/huderlem/poryscript/compare/3.5.0...3.5.1 [3.5.0]: https://github.com/huderlem/poryscript/compare/3.4.0...3.5.0 [3.4.0]: https://github.com/huderlem/poryscript/compare/3.3.0...3.4.0 [3.3.0]: https://github.com/huderlem/poryscript/compare/3.2.0...3.3.0 diff --git a/main.go b/main.go index 21f3feb..ef0c972 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( "github.com/huderlem/poryscript/parser" ) -const version = "3.5.0" +const version = "3.5.1" type mapOption map[string]string