From 70b3db27db32c142f8a37cdfe0a16e6b1fc99e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Den=20Delimarsky=20=F0=9F=8C=BA?= <53200638+localden@users.noreply.github.com> Date: Sun, 14 Sep 2025 21:11:13 -0700 Subject: [PATCH] Update Specify definition --- CHANGELOG.md | 22 ++++++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..91eb47a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +All notable changes to the Specify CLI will be documented in this file. + +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). + +## [Unreleased] + +## [0.0.4] - 2025-09-14 + +### Added + +- SOCKS proxy support for corporate environments via `httpx[socks]` dependency + +### Fixed + +N/A + +### Changed + +N/A \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index bd24288..7eeeb52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [project] name = "specify-cli" -version = "0.0.3" +version = "0.0.4" description = "Setup tool for Specify spec-driven development projects" requires-python = ">=3.11" dependencies = [ "typer", "rich", - "httpx", + "httpx[socks]", "platformdirs", "readchar", "truststore>=0.10.4",