From 7b4a09af8414eb1f5f6da9a8422fb53b5e9cbc15 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Sat, 29 Jul 2023 19:32:15 -0400 Subject: [PATCH] Mark 0.0.13 (#128) # 0.0.13 / 2023-07-29 ### Added - Add env variable `CTFCLI_PLUGIN_DIR` to override the default plugin dir for development. - Add `--directory` argument to `ctfcli challenge add` - Can also be called as `ctf challenge add git@github.com:repo.git directory` - Useful for grouping challenges into separate directories like: `web/challenge1`. - `connection_info` specified in challenge.yml will be used instead of details generated by a deploy handler ### Fixed - Bump PyYAML version to 6.0.1 --- CHANGELOG.md | 14 ++++++++++++++ ctfcli/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3889164..c629c7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +# 0.0.13 / 2023-07-29 + +### Added + +- Add env variable `CTFCLI_PLUGIN_DIR` to override the default plugin dir for development. +- Add `--directory` argument to `ctfcli challenge add` + - Can also be called as `ctf challenge add git@github.com:repo.git directory` + - Useful for grouping challenges into separate directories like: `web/challenge1`. +- `connection_info` specified in challenge.yml will be used instead of details generated by a deploy handler + +### Fixed + +- Bump PyYAML version to 6.0.1 + # 0.0.12 / 2023-06-25 ### Added diff --git a/ctfcli/__init__.py b/ctfcli/__init__.py index 7417c1a..e8e8029 100644 --- a/ctfcli/__init__.py +++ b/ctfcli/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.0.12" +__version__ = "0.0.13" __name__ = "ctfcli"