Skip to content

Commit

Permalink
prepare 1.3.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelb committed Oct 4, 2023
1 parent 65bc110 commit 1ffa1a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- MSRV increase to 1.65
- Bash interpreter fix + REPL feature removal
- API's run_string function can display virtual text at current cursor position
- HTTP support (using ureq)

## v1.3.6
- Ruby documentation
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sniprun"
version = "1.3.7-beta"
version = "1.3.7"
authors = ["michaelb <[email protected]>"]
rust-version = "1.65"
edition = "2018"
Expand Down
5 changes: 4 additions & 1 deletion src/launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ impl Launcher {
}

v.push(separator);
v.push("More help, quickstart etc. can be found on https://michaelb.github.io/sniprun/\n".to_owned());
v.push(
"More help, quickstart etc. can be found on https://michaelb.github.io/sniprun/\n"
.to_owned(),
);

info!("[INFO] Writing info to file");
let filename = self.data.work_dir.clone() + "/infofile.txt";
Expand Down

0 comments on commit 1ffa1a8

Please sign in to comment.