diff --git a/CHANGELOG.md b/CHANGELOG.md index ee977b2..870dfc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v2.2.0 - 20.06.2024 + +- Add new completions system. The old system is still supported so this isn't a + breaking change. The new system has priority over the old system when both + are present. + ## v2.1.0 - 16.06.2024 - Rework `--validation` flag. It now needs to come after `--` and validates any diff --git a/Cargo.lock b/Cargo.lock index 23a3469..a2b14e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -262,7 +262,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "sub" -version = "2.1.0" +version = "2.2.0" dependencies = [ "chumsky", "clap", diff --git a/Cargo.toml b/Cargo.toml index 7daa4bf..e9fe03b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sub" -version = "2.1.0" +version = "2.2.0" description = "Dynamically generate rich CLIs from scripts." authors = ["Juan Ibiapina "] edition = "2021" diff --git a/default.nix b/default.nix index 7802f74..1bda694 100644 --- a/default.nix +++ b/default.nix @@ -3,7 +3,7 @@ with pkgs; rustPlatform.buildRustPackage rec { name = "sub-${version}"; - version = "2.1.0"; + version = "2.2.0"; src = ./.; cargoLock = {