Skip to content

Commit

Permalink
update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
webern committed Jan 24, 2021
1 parent 5107b6a commit 2c15958
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Currently we are using v0.0.x where every version can and will contain breaking changes.

## [v0.0.6] 2021-01-23
## Added
- Implement display for `Element` [#81]
- Add some types for XML Namespaces [#81]

### Changed
- Make the fields of `PI` (processing instruction) private [#81]

[#81]: https://github.com/webern/exile/pull/81

## [v0.0.5] 2020-12-12
## Added
- Add a way to iterate attributes [#80]
Expand Down Expand Up @@ -83,7 +93,8 @@ Currently we are using v0.0.x where every version can and will contain breaking
[#52]: https://github.com/webern/exile/pull/52

<!-- version diff links -->
[Unreleased]: https://github.com/webern/exile/compare/v0.0.5...HEAD
[Unreleased]: https://github.com/webern/exile/compare/v0.0.6...HEAD
[v0.0.6]: https://github.com/webern/exile/compare/v0.0.5...v0.0.6
[v0.0.5]: https://github.com/webern/exile/compare/v0.0.4...v0.0.5
[v0.0.4]: https://github.com/webern/exile/compare/v0.0.3...v0.0.4
[v0.0.3]: https://github.com/webern/exile/compare/v0.0.2...v0.0.3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
[package]
name = "exile"
version = "0.0.5"
version = "0.0.6"
description = "DOM-Style XML Parser"
authors = ["Matthew James Briggs <matthew.james.briggs@gmail.com>"]
categories = ["encoding", "parser-implementations", "parsing"]
edition = "2018"
exclude = ["bin/", "data/", "target/", "testgen/", "tests/"]
exclude = [
".github",
"bin/",
"data/",
"target/",
"testgen/",
"tests/",
]
keywords = ["xml"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -18,4 +25,4 @@ cargo-readme = "3.2.0"

[features]
default = []
doctype_wip = []
doctype_wip = []

0 comments on commit 2c15958

Please sign in to comment.