MAINT: Bump version 0.1.8

This commit is contained in:
Jeremy Wall 2018-08-22 19:01:23 -05:00
parent c3048915d4
commit a1bfba65b7
3 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -225,7 +225,7 @@ dependencies = [
[[package]]
name = "ucg"
version = "0.1.7"
version = "0.1.8"
dependencies = [
"bencher 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.26.2 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "ucg"
version = "0.1.7"
version = "0.1.8"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
description = "A configuration generation grammar."
repository = "https://github.com/zaphar/ucg"

View File

@ -339,9 +339,9 @@
//! A filter expression starts with the filter keyword followed by the name of a macro with exactly
//! one argument, a `.`, and the name of the output field for the macro. The filter will apply the
//! macro to each element of the list and if the output field is a value that is not NULL then the
//! list element is appended to the output list. If the output field returns a NULL Value then the
//! element is not appended to the output list. If the output field does not exist in the macro it
//! will be a compile error.
//! list element is appended to the output list. If the output field returns a NULL Value or Boolean
//! false then the element is not appended to the output list. If the output field does not exist in
//! the macro it will be a compile error.
//!
//! ```ucg
//! let list = ["foo", "bar", "foo", "bar"];