Skip to content

Commit d2869d9

Browse files
authored
Release 0.3.2 (#11)
1 parent ce0ecc2 commit d2869d9

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "val"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["Liam <[email protected]>"]
55
categories = ["science", "parser-implementations", "command-line-interface"]
66
description = "An arbitrary precision calculator language"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Below is the output of `val --help`, which describes some of the
3838
arguments/options we support:
3939

4040
```present cargo run -- --help
41-
val 0.3.1
41+
val 0.3.2
4242
4343
An arbitrary precision calculator language
4444

src/evaluator.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ impl<'a> Evaluator<'a> {
282282
}
283283

284284
self.inside_loop = old_inside_loop;
285+
285286
Ok(EvalResult::Value(result))
286287
}
287288
}

0 commit comments

Comments
 (0)