From 15b9e4b8f59158a67c5fe1dcd7d5ec1a11244131 Mon Sep 17 00:00:00 2001 From: sidju Date: Wed, 25 Oct 2023 16:55:55 +0200 Subject: [PATCH] Release 0.11.2 (#24) Co-authored-by: David Sid Olofsson --- Cargo.toml | 2 +- RELEASE_NOTES.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7189c7a..fb601e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "add-ed" description = "Embeddable pure rust editor based on ED" -version = "0.11.1" +version = "0.11.2" repository = "https://github.com/sidju/add-ed" readme = "README.md" categories = ["text-editors"] diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bbd65b9..a75ef6d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,15 @@ +# 0.11.2 +Handle some panics found by fuzzing. Ironically the ones found were from +string slicing when constructing errors for invalid indices. +(Should have been part of 0.11.1, but I got a bit trigger happy and released +before thinking.) + +# 0.11.1 +Improve newline handling. Now a non-newline-terminated file will still open +and work correctly. This will also make all files write to disk with "\n" +(aka. "unix style") line endings, unless the IO implementation used converts +the line endings. + # 0.11.0 Nearing a stable release now, so some less clean features are remade in this release to be easier to maintain in a stable manner forward.