Skip to content

Commit

Permalink
Bump version: 0.3.12 -> 0.3.13 (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Nov 6, 2018
1 parent af97f3f commit 849cdcb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.3.12"
version = "0.3.13"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand Down
8 changes: 7 additions & 1 deletion src/runtime_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit 849cdcb

Please sign in to comment.