Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ All notable changes to the Specify CLI and templates are documented here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2026-02-20

### Fixed

- **Python 3.14 / Homebrew compatibility**: Added explicit `click>=8.1` dependency to prevent environment isolation failures on Python 3.14 (Homebrew) where the system click could bleed into the uv virtual environment, causing `TypeError: ParamType.get_metavar() got an unexpected keyword argument 'ctx'` ([#1631](https://github.com/github/spec-kit/issues/1631))
Comment thread
mnriem marked this conversation as resolved.
Outdated

## [0.1.1] - 2026-02-13

### Added
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[project]
name = "specify-cli"
version = "0.1.1"
version = "0.1.2"
description = "Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)."
requires-python = ">=3.11"
dependencies = [
"typer",
"click>=8.1",
"rich",
"httpx[socks]",
"platformdirs",
Expand Down