Fix category slug

This commit is contained in:
Leonora Tindall 2019-10-19 16:07:56 -04:00
parent c44f33a056
commit 234678befe
Signed by: nora
GPG Key ID: 99041B68DBC02DAC
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -20,7 +20,7 @@ dependencies = [
[[package]]
name = "utf8-norm"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"lapp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "utf8-norm"
version = "1.0.0"
version = "1.0.1"
authors = ["Leonora Tindall <nora@nora.codes>"]
edition = "2018"
license = "GPL-3.0-only"
@ -9,7 +9,7 @@ readme = "README"
homepage = "https://nora.codes/projects/utf8-norm"
repository = "https://git.nora.codes/nora/utf-norm"
keywords = ["unicode", "normalize"]
categories = ["command-line=utilities", "internationalization", "localization", "text-processing"]
categories = ["command-line-utilities", "internationalization", "localization", "text-processing"]
[dependencies]
lapp = "0.4"

2
README
View File

@ -1,6 +1,6 @@
utf8-norm, validate and normalize UTF-8 Unicode data
Version 1.0.0 licensed GPLv3. (C) 2019 Leonora Tindall <nora@nora.codes>
Version 1.0.1 licensed GPLv3. (C) 2019 Leonora Tindall <nora@nora.codes>
Fast command line Unicode normalization, supporting stream safety transformations as well
as NFC, NFD, NFKD, and NFKC. Exits with failure if the incoming stream is not valid UTF-8.