Bump version: 0.3.12 -> 0.3.13 (#371)

This commit is contained in:
Casey Rodarmor 2018-11-06 00:41:33 -08:00 committed by GitHub
parent af97f3f1c1
commit 849cdcb37f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

2
Cargo.lock generated
View file

@ -190,7 +190,7 @@ dependencies = [
[[package]]
name = "just"
version = "0.3.12"
version = "0.3.13"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"assert_matches 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.3.12"
version = "0.3.13"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "CC0-1.0"

View file

@ -23,7 +23,13 @@ fn write_token_error_context(f: &mut fmt::Formatter, token: &Token) -> Result<()
#[derive(Debug)]
pub enum RuntimeError<'a> {
ArgumentCountMismatch{recipe: &'a str, parameters: Vec<&'a Parameter<'a>>, found: usize, min: usize, max: usize},
ArgumentCountMismatch{
recipe: &'a str,
parameters: Vec<&'a Parameter<'a>>,
found: usize,
min: usize,
max: usize,
},
Backtick{token: Token<'a>, output_error: OutputError},
Code{recipe: &'a str, line_number: Option<usize>, code: i32},
Cygpath{recipe: &'a str, output_error: OutputError},