diff --git a/CHANGELOG.md b/CHANGELOG.md index f28ecc8..b78b9f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +# 0.1.3 / 2024-08-20 + +### Added + +- Added support for `git subrepo` instead of only `git subtree` +- Added the `--create` switch to `ctf challenge mirror` to create local copies of challenges that exist on a remote CTFd instance + +### Fixed + +- `ctf challenge {push, pull}` will now push / pull all challenges instead of the challenge in the current working directory. + +### Changed + +- Use `--load` switch as part of docker build to support alternate build drivers + # 0.1.2 / 2023-02-26 ### Added diff --git a/ctfcli/__init__.py b/ctfcli/__init__.py index a920560..92944ea 100644 --- a/ctfcli/__init__.py +++ b/ctfcli/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.2" +__version__ = "0.1.3" __name__ = "ctfcli" diff --git a/pyproject.toml b/pyproject.toml index ad22389..d7601d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ctfcli" -version = "0.1.2" +version = "0.1.3" description = "ctfcli is a tool to manage Capture The Flag events and challenges" authors = ["Kevin Chung ", "MiƂosz Skaza "] readme = "README.md"