From bcea6fb3eae25ee452a58a982fed4e71fbdad474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 9 Apr 2019 22:47:12 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 ++++++- elm.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35658f6..3fb19f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [2.3.4] - 2019-04-09 +### Changed +- Treat a non-breaking space (`\u{00a0}`) like a space character. This avoids runtime errors when using `Html.Util.toVirtualDom`. Thanks to @magopian! + ## [2.3.3] - 2019-03-25 ### Changed - Support hyphens in tag names (allows parsing web components). Thanks to @andre-dietrich! @@ -55,7 +59,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [named-character-references]: https://www.w3.org/TR/html5/syntax.html#named-character-references -[Unreleased]: https://github.com/hecrj/html-parser/compare/2.3.3...HEAD +[Unreleased]: https://github.com/hecrj/html-parser/compare/2.3.4...HEAD +[2.3.4]: https://github.com/hecrj/html-parser/compare/2.3.3...2.3.4 [2.3.3]: https://github.com/hecrj/html-parser/compare/2.3.2...2.3.3 [2.3.2]: https://github.com/hecrj/html-parser/compare/2.3.1...2.3.2 [2.3.1]: https://github.com/hecrj/html-parser/compare/2.3.0...2.3.1 diff --git a/elm.json b/elm.json index 3a52bb1..d2f834a 100644 --- a/elm.json +++ b/elm.json @@ -3,7 +3,7 @@ "name": "hecrj/html-parser", "summary": "Parse HTML 5 in Elm", "license": "BSD-3-Clause", - "version": "2.3.3", + "version": "2.3.4", "exposed-modules": [ "Html.Parser", "Html.Parser.Util"