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 eadba24
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 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 <[email protected]>"]
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 = []
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# exile

Current version: 0.0.5
Current version: 0.0.6

![build](https://github.com/webern/exile/workflows/exile%20ci/badge.svg)

Expand Down
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ fn main() {

fn generate_readme() {
// Check for environment variable "SKIP_README". If it is set, skip README generation.
println!("cargo:rerun-if-env-changed=EXILE_GENERATE_README");
println!("cargo:rerun-if-changed=src/lib.rs");
println!("cargo:rerun-if-changed=README.md");
println!("cargo:rerun-if-changed=readme.template");
if env::var_os("EXILE_GENERATE_README").is_none() {
return;
}
Expand Down

0 comments on commit eadba24

Please sign in to comment.