diff options
author | Nadrieril | 2020-04-05 19:56:00 +0100 |
---|---|---|
committer | GitHub | 2020-04-05 19:56:00 +0100 |
commit | 4290615769fc26c5e4b70843e7fbfddf6359af41 (patch) | |
tree | d7b7a860f08831aa81faee961c0d675440daea32 /abnf_to_pest | |
parent | 7e977f282fb6a0eff0ef45738b9b5c98dc4c6fee (diff) | |
parent | 5a10cd2e8fac854f4f6fa152cfb1b9ad71b0d091 (diff) |
Merge pull request #157 from Nadrieril/release
Release v0.5.0
Diffstat (limited to 'abnf_to_pest')
-rw-r--r-- | abnf_to_pest/Cargo.toml | 3 | ||||
-rw-r--r-- | abnf_to_pest/src/lib.rs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/abnf_to_pest/Cargo.toml b/abnf_to_pest/Cargo.toml index 1567512..6e4cfe7 100644 --- a/abnf_to_pest/Cargo.toml +++ b/abnf_to_pest/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "abnf_to_pest" -version = "0.2.0" # remember to update html_root_url +# remember to update html_root_url +version = "0.5.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs index ba8bdf2..a579493 100644 --- a/abnf_to_pest/src/lib.rs +++ b/abnf_to_pest/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.2.0")] +#![doc(html_root_url = "https://docs.rs/abnf_to_pest/0.5.0")] //! A tiny crate that helps convert ABNF grammars to [pest][pest]. //! |