File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ Recent changes to the Specify CLI and templates are documented here.
77The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
88and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
99
10+ ## [ 0.1.13] - 2026-03-03
11+
12+ ### Fixed
13+
14+ - Fixed a syntax regression in ` src/specify_cli/__init__.py ` in ` _build_ai_assistant_help() ` that broke ` ruff ` and ` pytest ` collection in CI.
15+
1016## [ 0.1.12] - 2026-03-02
1117
1218### Changed
Original file line number Diff line number Diff line change 11[project ]
22name = " specify-cli"
3- version = " 0.1.12 "
3+ version = " 0.1.13 "
44description = " Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)."
55requires-python = " >=3.11"
66dependencies = [
@@ -51,4 +51,3 @@ precision = 2
5151show_missing = true
5252skip_covered = false
5353
54-
Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ def _build_ai_assistant_help() -> str:
278278
279279 alias_phrases = []
280280 for alias , target in sorted (AI_ASSISTANT_ALIASES .items ()):
281- alias_phrases .append (f \ "'{alias}' as an alias for '{target}' \ " )
281+ alias_phrases .append (f"'{ alias } ' as an alias for '{ target } '" )
282282
283283 if len (alias_phrases ) == 1 :
284284 aliases_text = alias_phrases [0 ]
You can’t perform that action at this time.
0 commit comments