Skip to content
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

# 0.1.6 / 2026-01-06

### Added

- Add `sha1sum` to `--ignore` as part of `ctf challenge sync` to allow syncing files when the remote checksum or local checksum is corrupted

### Fixed

- Fix an issue where if deployment returned updated connection info we wouldn't update it in challenge.yml
- Fix an issue where relative paths would not deploy due to a logging error

### Changed

- Challenges without an image will be considered a skipped deploy instead of a failed deploy
- Switch from poetry to uv
- Switch from to ruff

# 0.1.5 / 2025-09-04

### 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.5"
__version__ = "0.1.6"
__name__ = "ctfcli"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ctfcli"
version = "0.1.5"
version = "0.1.6"
description = "ctfcli is a tool to manage Capture The Flag events and challenges"
authors = [
{ name = "Kevin Chung", email = "kchung@ctfd.io" },
Expand Down
Loading