diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | chame.nimble | 2 | ||||
-rw-r--r-- | chame/version.nim | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS index 30311864..0eb83f98 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +0.14.5 (2024.04.09) +* Fix broken parsing of HTML entities starting with a lower `z' +* Fix nimble test execution on old Nim versions +* Various refactorings: reduce duplicated code, get rid of some dead code, + move some atom mappings to compile time + 0.14.4 (2024.03.03) * Clean up tokenizeEOF so that it's compiled correctly on old Nim + ARM diff --git a/chame.nimble b/chame.nimble index 86bddb76..84b8de53 100644 --- a/chame.nimble +++ b/chame.nimble @@ -1,6 +1,6 @@ # Package -version = "0.14.4" +version = "0.14.5" author = "bptato" description = "HTML5 parser for Chawan" license = "Unlicense" diff --git a/chame/version.nim b/chame/version.nim index dffc85f5..05b18724 100644 --- a/chame/version.nim +++ b/chame/version.nim @@ -1,3 +1,3 @@ const Major* = 0 const Minor* = 14 -const Patch* = 4 +const Patch* = 5 |