Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaSd committed Dec 9, 2020
1 parent e774bfd commit 29fd7aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**1.2.2**
- Fix regression: Handle multiline string

**1.2.1**
- Use `CARGO_TARGET_DIR` path if set instead of overwriting it

Expand Down
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 = "irust"
version = "1.2.1"
version = "1.2.2"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::irust::options::Options;

use std::env;

const VERSION: &str = "1.2.1";
const VERSION: &str = "1.2.2";

pub fn handle_args(options: &mut Options) -> bool {
let args: Vec<String> = env::args().skip(1).collect();
Expand Down

0 comments on commit 29fd7aa

Please sign in to comment.