diff --git a/CHANGELOG.md b/CHANGELOG.md index 72d9e80..1df1d81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ The following is a summary of changes in each `newdoc` release, which is also a Git tag by the same name in this repository. +## v2.10.2 + +* Sanitize non-ASCII characters in the module ID ([#33](https://github.com/redhat-documentation/newdoc/issues/33)). +* No longer check for the `experimental` attribute, which isn't required anymore. + ## v2.10.1 * Fix an ID bug reported by Marc Muehlfeld. diff --git a/Cargo.lock b/Cargo.lock index ce0153e..7fe7d86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -281,7 +281,7 @@ dependencies = [ [[package]] name = "newdoc" -version = "2.10.1" +version = "2.10.2" dependencies = [ "askama", "clap", diff --git a/Cargo.toml b/Cargo.toml index e11a70d..597a01d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "newdoc" -version = "2.10.1" +version = "2.10.2" description = "Generate pre-populated module files formatted with AsciiDoc that are used in Red Hat and Fedora documentation." authors = ["Marek Suchánek "] license = "GPL-3.0-or-later"