diff --git a/CHANGELOG.md b/CHANGELOG.md index 18ab208..2e086e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.12.1 2024-01-12 + +* Upload changelog + +## 0.12.0 2024-01-12 + +Significant improvements have been made. Debug logs are available when running with `RUST_LOG=DEBUG` set as an environment variable. + +* Support for cloning from local repositories (almost any Git URL should work now). This also separates some more logic. +* `run` now works with a deploy path when running an archive. +* `network` option has been removed, the context now determines this (although it's not yet implemented). + ## 0.11.2 2023-12-15 * Fix exe name being overwritten by default value from CLI. Fix run state precedence. diff --git a/Cargo.lock b/Cargo.lock index 236dcad..97c4171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "tidploy" -version = "0.12.0" +version = "0.12.1" dependencies = [ "base64", "clap", diff --git a/Cargo.toml b/Cargo.toml index d4939b0..0682313 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tidploy" -version = "0.12.0" +version = "0.12.1" edition = "2021" license-file="LICENSE" authors=["Tip ten Brink"]