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
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.1] - 2026-05-29

### Removed
- The `notebooks` optional extra (`jupyter`, `ipykernel`). It only powered local
editing of `docs/quick_start.ipynb`, which still renders on GitHub/PyPI without
it, and its transitive tree (jupyter-server, jupyterlab, nbconvert, tornado,
etc.) accounted for the bulk of the repo's open Dependabot alerts. Contributors
who want to re-run the notebook can `pip install jupyter` directly. The shipped
SDK is unaffected — its only runtime dependency remains `httpx`.

### Changed
- Refreshed the dev/test dependency lock to clear the remaining Dependabot
alerts (patched `idna`, `pygments`, `pytest`, `python-dotenv`; dropped
`urllib3`/`requests` transitives). Dev-tool majors moved forward
(`mypy` 1.18→2.1, `pytest` 8→9, `ruff` 0.14→0.15, `vcrpy` 7→8); all lint,
type, and test gates stay green. No change to the shipped SDK's runtime deps.

## [1.1.0] - 2026-05-29

### Fixed
Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "tango-python"
version = "1.1.0"
version = "1.1.1"
description = "Python SDK for the Tango API"
readme = "README.md"
requires-python = ">=3.12"
Expand Down Expand Up @@ -37,10 +37,6 @@ dev = [
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
]
notebooks = [
"jupyter>=1.0.0",
"ipykernel>=6.25.0",
]
webhooks = [
"click>=8.1",
]
Expand Down
2 changes: 1 addition & 1 deletion tango/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
)
from .webhooks.receiver import Delivery, WebhookReceiver

__version__ = "1.1.0"
__version__ = "1.1.1"
__all__ = [
"TangoClient",
"TangoAPIError",
Expand Down
Loading
Loading