Skip to content

Commit 2efbe5c

Browse files
committed
Version bump.
1 parent 1e6b1ef commit 2efbe5c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.13.4] - 2021-06-24
10+
### Fixed
11+
- Do not expand predefined references in `Stream::consume_reference`.
12+
Thanks to [@Jesse-Bakker](https://github.com/Jesse-Bakker).
13+
914
## [0.13.3] - 2020-09-02
1015
### Changed
1116
- Documentation fixes by [@kneasle](https://github.com/kneasle).
@@ -200,7 +205,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
200205
### Changed
201206
- `log` 0.3 -> 0.4
202207

203-
[Unreleased]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.3...HEAD
208+
[Unreleased]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.4...HEAD
209+
[0.13.4]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.3...v0.13.4
204210
[0.13.3]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.2...v0.13.3
205211
[0.13.2]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.1...v0.13.2
206212
[0.13.1]: https://github.com/RazrFalcon/xmlparser/compare/v0.13.0...v0.13.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xmlparser"
3-
version = "0.13.3"
3+
version = "0.13.4"
44
authors = ["Evgeniy Reizner <[email protected]>"]
55
categories = ["parser-implementations"]
66
description = "Pull-based, zero-allocation XML parser."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you are looking for a higher level solution, check out
4747

4848
#![no_std]
4949

50-
#![doc(html_root_url = "https://docs.rs/xmlparser/0.13.3")]
50+
#![doc(html_root_url = "https://docs.rs/xmlparser/0.13.4")]
5151

5252
#![forbid(unsafe_code)]
5353
#![warn(missing_docs)]

0 commit comments

Comments
 (0)