From 588443f22de9ea9917daa92e78117fb3b0e6d150 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Mon, 11 Dec 2023 16:28:32 -0500 Subject: [PATCH] Mark 0.1.1 (#140) # 0.1.1 / 2023-12-11 ### Added - Added `ctf challenge mirror` command to pull changes from the remote CTFd instance into the local project ### Fixed - Properly include challenge.yml when generating a challenge from a template ### Changed - No longer require a ctfcli project to run all `ctf challenge` (e.g. `new`, `format`, `lint`) --- CHANGELOG.md | 14 ++++++++++++++ ctfcli/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd7233a..3262325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +# 0.1.1 / 2023-12-11 + +### Added + +- Added `ctf challenge mirror` command to pull changes from the remote CTFd instance into the local project + +### Fixed + +- Properly include challenge.yml when generating a challenge from a template + +### Changed + +- No longer require a ctfcli project to run all `ctf challenge` (e.g. `new`, `format`, `lint`) + # 0.1.0 / 2023-10-03 ### Added diff --git a/ctfcli/__init__.py b/ctfcli/__init__.py index bd87dd8..8b78994 100644 --- a/ctfcli/__init__.py +++ b/ctfcli/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" __name__ = "ctfcli" diff --git a/pyproject.toml b/pyproject.toml index 82a0d25..6da634d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ctfcli" -version = "0.1.0" +version = "0.1.1" description = "ctfcli is a tool to manage Capture The Flag events and challenges" authors = ["Kevin Chung ", "MiƂosz Skaza "] readme = "README.md"