Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark 0.1.3 #154

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ctfcli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.1.2"
__version__ = "0.1.3"
__name__ = "ctfcli"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <kchung@ctfd.io>", "Miłosz Skaza <milosz.skaza@ctfd.io>"]
readme = "README.md"
Expand Down
Loading