diff --git a/CHANGELOG.md b/CHANGELOG.md index 005ee7c..4a68018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [0.3.1](https://github.com/hellux/jotdown/releases/tag/0.3.1) - 2023-08-05 + +### Changed + +- Block parser performance improved, up to 15% faster. +- Last `unsafe` block removed (#5). + +### Fixed + +- Do not require indent for continuing footnotes. +- Transfer classes from reference definitions to links. +- Allow line breaks in reference links (still match reference label). +- Remove excess newline after raw blocks. +- HTML renderer: fix missing `

` tags after ordered lists (#44). + ## [0.3.0](https://github.com/hellux/jotdown/releases/tag/0.3.0) - 2023-05-16 ### Added diff --git a/Cargo.lock b/Cargo.lock index c27d81a..1b0285e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,11 +263,11 @@ dependencies = [ [[package]] name = "jotdown" -version = "0.3.0" +version = "0.3.1" [[package]] name = "jotdown_wasm" -version = "0.3.0" +version = "0.3.1" dependencies = [ "git2", "jotdown", diff --git a/Cargo.toml b/Cargo.toml index 2fe74dd..d6476ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "jotdown" description = "A parser for the Djot markup language" authors = ["Noah Hellman "] -version = "0.3.0" +version = "0.3.1" license = "MIT" edition = "2021" keywords = ["djot", "markup"] diff --git a/examples/jotdown_wasm/Cargo.toml b/examples/jotdown_wasm/Cargo.toml index 5f0c3fb..a924503 100644 --- a/examples/jotdown_wasm/Cargo.toml +++ b/examples/jotdown_wasm/Cargo.toml @@ -3,7 +3,7 @@ name = "jotdown_wasm" description = "Web demo of Jotdown" authors = ["Noah Hellman "] license = "MIT" -version = "0.3.0" +version = "0.3.1" edition = "2021" homepage = "https://hllmn.net/projects/jotdown" repository = "https://github.com/hellux/jotdown"