Skip to content

Commit 54b3820

Browse files
committed
Bump version
1 parent 7eefee1 commit 54b3820

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [2.3.2] - 2019-03-23
10+
### Changed
11+
- Fix decimal numeric character references failing to parse if they contained leading zeros ([#8](https://github.com/hecrj/html-parser/pull/8/files)). Thanks to @68kHeart!
12+
- Fix `nodeToString` example in documentation.
13+
914
## [2.3.1] - 2019-03-10
1015
### Changed
1116
- `Html.Parser.nodeToString` spaces attributes properly.
@@ -32,12 +37,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3237

3338
## [1.1.0] - 2018-12-06
3439
### Added
35-
- `Html.Parser.Util` to transform parser nodes into virtual dom nodes.
40+
- `Html.Parser.Util` to transform parser nodes into virtual dom nodes ([#3](https://github.com/hecrj/html-parser/pull/3)). Thanks to @ccapndave!
3641
- Support for all [named character references][named-character-references].
3742

3843
## [1.0.1] - 2018-09-11
3944
### Added
40-
- Support void elements with a closing slash (like `<br />`, etc.).
45+
- Support void elements with a closing slash (like `<br />`, etc.) ([#1](https://github.com/hecrj/html-parser/pull/1)). Thanks to @isaacseymour!
4146

4247
## [1.0.0] - 2018-08-23
4348
### Added
@@ -46,7 +51,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4651

4752
[named-character-references]: https://www.w3.org/TR/html5/syntax.html#named-character-references
4853

49-
[Unreleased]: https://github.com/hecrj/html-parser/compare/2.3.1...HEAD
54+
[Unreleased]: https://github.com/hecrj/html-parser/compare/2.3.2...HEAD
55+
[2.3.2]: https://github.com/hecrj/html-parser/compare/2.3.1...2.3.2
5056
[2.3.1]: https://github.com/hecrj/html-parser/compare/2.3.0...2.3.1
5157
[2.3.0]: https://github.com/hecrj/html-parser/compare/2.2.0...2.3.0
5258
[2.2.0]: https://github.com/hecrj/html-parser/compare/2.1.0...2.2.0

elm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "hecrj/html-parser",
44
"summary": "Parse HTML 5 in Elm",
55
"license": "BSD-3-Clause",
6-
"version": "2.3.1",
6+
"version": "2.3.2",
77
"exposed-modules": [
88
"Html.Parser",
99
"Html.Parser.Util"

0 commit comments

Comments
 (0)