Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed Sep 8, 2023
1 parent b3697bd commit 93b91f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## CHANGELOG

### v0.36.14
### v0.37.0

* Fix: env vars loading order is not consistent #934
* \[**backward compatibility break**\] Maintenance: Upgrade duckscript runtime to 0.8
* Maintenance: Upgrade cargo-watch to 8.4.1

### v0.36.13 (2023-08-10)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ cliparser = "^0.1.2"
colored = "^2"
ctrlc = "^3"
dirs-next = "^2"
duckscript = "^0.7.5"
duckscriptsdk = { version = "^0.8.20", default-features = false }
duckscript = "^0.8.0"
duckscriptsdk = { version = "^0.9.0", default-features = false }
envmnt = "^0.10.4"
fern = "^0.6"
fsio = { version = "^0.4", features = ["temp-path"] }
Expand Down
2 changes: 1 addition & 1 deletion src/lib/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ fn create_watch_task(task: &str, options: Option<TaskWatchOptions>, flow_info: &
TaskWatchOptions::Options(watch_options) => {
let watch_version = match watch_options.version {
Some(value) => value.to_string(),
_ => "8.4.0".to_string(), // current version
_ => "8.4.1".to_string(), // current version

Check warning on line 500 in src/lib/runner.rs

View check run for this annotation

Codecov / codecov/patch

src/lib/runner.rs#L500

Added line #L500 was not covered by tests
};
task_config.install_crate_args = Some(vec!["--version".to_string(), watch_version]);

Expand Down

0 comments on commit 93b91f8

Please sign in to comment.