Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
Add features marks on docs.rs and license file for entities.json.
  • Loading branch information
danielparks committed Jul 10, 2023
1 parent edad2f6 commit f9b7513
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

All notable changes to this project will be documented in this file.

## main branch
## Release 1.0.3 (2023-07-09)

* Enabled feature marks on <docs.rs> to make it clearer what features are
* Enabled feature marks on [docs.rs] to make it clearer what features are
required by what functions.
* Clarified ownership and licensing of entities.json data file.

[docs.rs]: https://docs.rs/htmlize

## Release 1.0.2 (2023-03-04)

* Fix building with `unescape` feature but not `unescape_fast`. Added tests for
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htmlize"
version = "1.0.2"
version = "1.0.3"
authors = ["Daniel Parks <oss-htmlize@demonhorse.org>"]
description = "Encode and decode HTML entities in UTF-8 according to the standard"
homepage = "https://github.com/danielparks/htmlize"
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,20 +189,20 @@ additional terms or conditions.

[docs.rs]: https://docs.rs/htmlize/latest/htmlize/
[crates.io]: https://crates.io/crates/htmlize
[`escape_text()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_text.html
[`escape_text_bytes()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_text_bytes.html
[`escape_attribute()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_attribute.html
[`escape_attribute_bytes()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_attribute_bytes.html
[`escape_all_quotes()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_all_quotes.html
[`escape_all_quotes_bytes()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.escape_all_quotes_bytes.html
[`unescape()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.unescape.html
[`unescape_attribute()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.unescape_attribute.html
[`unescape_in()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.unescape_in.html
[`unescape_bytes_in()`]: https://docs.rs/htmlize/1.0.2/htmlize/fn.unescape_bytes_in.html
[`escape_text()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_text.html
[`escape_text_bytes()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_text_bytes.html
[`escape_attribute()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_attribute.html
[`escape_attribute_bytes()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_attribute_bytes.html
[`escape_all_quotes()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_all_quotes.html
[`escape_all_quotes_bytes()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.escape_all_quotes_bytes.html
[`unescape()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.unescape.html
[`unescape_attribute()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.unescape_attribute.html
[`unescape_in()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.unescape_in.html
[`unescape_bytes_in()`]: https://docs.rs/htmlize/1.0.3/htmlize/fn.unescape_bytes_in.html
[`Cow`]: https://doc.rust-lang.org/std/borrow/enum.Cow.html
[official WHATWG algorithm]: https://html.spec.whatwg.org/multipage/parsing.html#character-reference-state
[phf]: https://crates.io/crates/phf
[features]: https://docs.rs/htmlize/1.0.2/htmlize/index.html#features
[features]: https://docs.rs/htmlize/1.0.3/htmlize/index.html#features
[iai]: https://crates.io/crates/iai
[criterion]: https://crates.io/crates/criterion
[`cargo criterion`]: https://crates.io/crates/cargo-criterion
Expand Down

0 comments on commit f9b7513

Please sign in to comment.