Release 0.3.1

This commit is contained in:
Noah Hellman 2023-08-05 13:23:10 +02:00
parent 6091f2ea70
commit aff431e227
4 changed files with 19 additions and 4 deletions

View file

@ -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 `<p>` tags after ordered lists (#44).
## [0.3.0](https://github.com/hellux/jotdown/releases/tag/0.3.0) - 2023-05-16 ## [0.3.0](https://github.com/hellux/jotdown/releases/tag/0.3.0) - 2023-05-16
### Added ### Added

4
Cargo.lock generated
View file

@ -263,11 +263,11 @@ dependencies = [
[[package]] [[package]]
name = "jotdown" name = "jotdown"
version = "0.3.0" version = "0.3.1"
[[package]] [[package]]
name = "jotdown_wasm" name = "jotdown_wasm"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"git2", "git2",
"jotdown", "jotdown",

View file

@ -2,7 +2,7 @@
name = "jotdown" name = "jotdown"
description = "A parser for the Djot markup language" description = "A parser for the Djot markup language"
authors = ["Noah Hellman <noah@hllmn.net>"] authors = ["Noah Hellman <noah@hllmn.net>"]
version = "0.3.0" version = "0.3.1"
license = "MIT" license = "MIT"
edition = "2021" edition = "2021"
keywords = ["djot", "markup"] keywords = ["djot", "markup"]

View file

@ -3,7 +3,7 @@ name = "jotdown_wasm"
description = "Web demo of Jotdown" description = "Web demo of Jotdown"
authors = ["Noah Hellman <noah@hllmn.net>"] authors = ["Noah Hellman <noah@hllmn.net>"]
license = "MIT" license = "MIT"
version = "0.3.0" version = "0.3.1"
edition = "2021" edition = "2021"
homepage = "https://hllmn.net/projects/jotdown" homepage = "https://hllmn.net/projects/jotdown"
repository = "https://github.com/hellux/jotdown" repository = "https://github.com/hellux/jotdown"