Release 0.2.1
This commit is contained in:
parent
bdab4f021b
commit
d61a9fa4a9
4 changed files with 14 additions and 4 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
|||
## [0.2.1](https://github.com/hellux/jotdown/releases/tag/0.2.1) - 2023-04-25
|
||||
|
||||
### Changed
|
||||
|
||||
- Performance improved for inline parsing, up to 80% faster (#37).
|
||||
|
||||
### Fixed
|
||||
|
||||
- URL of autolink exit event (#35).
|
||||
|
||||
## [0.2.0](https://github.com/hellux/jotdown/releases/tag/0.2.0) - 2023-04-04
|
||||
|
||||
### Added
|
||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -263,11 +263,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jotdown"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
|
||||
[[package]]
|
||||
name = "jotdown_wasm"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"git2",
|
||||
"jotdown",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = "jotdown"
|
||||
description = "A parser for the Djot markup language"
|
||||
authors = ["Noah Hellman <noah@hllmn.net>"]
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
keywords = ["djot", "markup"]
|
||||
|
|
|
@ -3,7 +3,7 @@ name = "jotdown_wasm"
|
|||
description = "Web demo of Jotdown"
|
||||
authors = ["Noah Hellman <noah@hllmn.net>"]
|
||||
license = "MIT"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
edition = "2021"
|
||||
homepage = "https://hllmn.net/projects/jotdown"
|
||||
repository = "https://github.com/hellux/jotdown"
|
||||
|
|
Loading…
Reference in a new issue