diff --git a/CHANGELOG.md b/CHANGELOG.md index 3262325..f28ecc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +# 0.1.2 / 2023-02-26 + +### Added + +- Before uploading files to CTFd, ctfcli will check for CTFd's SHA1 hash of the previously uploaded file and skip uploading if it is the same +- Support using remote Docker images instead of having to build and push local images + # 0.1.1 / 2023-12-11 ### Added diff --git a/ctfcli/__init__.py b/ctfcli/__init__.py index 8b78994..a920560 100644 --- a/ctfcli/__init__.py +++ b/ctfcli/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.1" +__version__ = "0.1.2" __name__ = "ctfcli"