From ec7584a1d00feb4e9c1828670bee9166f82f8db2 Mon Sep 17 00:00:00 2001 From: "V. David Zvenyach" Date: Mon, 10 Aug 2026 11:01:36 -0500 Subject: [PATCH] chore(release): v1.5.1 Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- tango/__init__.py | 2 +- uv.lock | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a485161..0e42a2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.5.1] - 2026-08-10 + ### Documentation - Documented (and pinned with tests) the OR syntax `list_entities(socioeconomic=...)` has always supported: pipe-separated values match entities holding any of the listed designations, e.g. `socioeconomic="OY|A2"`; values are SAM business-type codes (e.g. `OY` Black American Owned, `A6` SBA-certified 8(a), `A2` Woman Owned), not set-aside codes. +### Changed +- The sdist no longer packages `.github/workflows`, so CI-only commits stop changing the sdist hash. ([#58](https://github.com/makegov/tango-python/pull/58)) + ## [1.5.0] - 2026-08-04 ### Added diff --git a/pyproject.toml b/pyproject.toml index 91211bb..db53049 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tango-python" -version = "1.5.0" +version = "1.5.1" description = "Python SDK for the Tango API" readme = "README.md" requires-python = ">=3.12" diff --git a/tango/__init__.py b/tango/__init__.py index 47a3da3..ce65c2a 100644 --- a/tango/__init__.py +++ b/tango/__init__.py @@ -50,7 +50,7 @@ ) from .webhooks.receiver import Delivery, WebhookReceiver -__version__ = "1.5.0" +__version__ = "1.5.1" __all__ = [ "TangoClient", "TangoAPIError", diff --git a/uv.lock b/uv.lock index 8904f94..98beefc 100644 --- a/uv.lock +++ b/uv.lock @@ -515,7 +515,7 @@ wheels = [ [[package]] name = "tango-python" -version = "1.5.0" +version = "1.5.1" source = { editable = "." } dependencies = [ { name = "httpx" },