diff --git a/CHANGELOG b/CHANGELOG index 985a70d..1a64d18 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.7.1 +----- +Add missing documentation + 0.7.0 ----- Add an array datatype and associated functions diff --git a/Cargo.lock b/Cargo.lock index a159871..32d9f59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -518,7 +518,7 @@ dependencies = [ [[package]] name = "lavendeux-parser" -version = "0.7.0" +version = "0.7.1" dependencies = [ "chrono", "derive_more", diff --git a/Cargo.toml b/Cargo.toml index 9c04739..f10022e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ categories = ["parser-implementations", "development-tools", "command-line-utili homepage = "https://rscarson.github.io/Lavendeux/" repository = "https://github.com/rscarson/lavendeux-parser" readme = "readme.md" -version = "0.7.0" +version = "0.7.1" edition = "2021" [features] diff --git a/README.md b/README.md index adf5c5e..8b70482 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,12 @@ uppercase("s1") | lowercase("S1") | trim(" s1 ") regex("foo.*", "foobar") // foobar regex("foo(.*)", "foobar", 1) // bar +// Array functions +len(a) | is_empty(a) +pop(a) | push(a) | dequeue(a) | enqueue(a) +remove(a, index) | element(a, index) +merge(a1, a2) + // Rounding functions ceil(n) | floor(n) | round(n, precision) diff --git a/src/lib.rs b/src/lib.rs index fed316d..e671b34 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -102,7 +102,7 @@ //! } //! ``` //! Extensions give a more flexible way of adding functionality at runtime. Extensions are written in javascript. -#![doc(html_root_url = "https://docs.rs/lavendeux-parser/0.7.0")] +#![doc(html_root_url = "https://docs.rs/lavendeux-parser/0.7.1")] #![warn(missing_docs)] #![warn(rustdoc::missing_doc_code_examples)]