mirror of
https://github.com/langchain-ai/deepagents.git
synced 2026-08-27 20:50:04 -04:00
19cd676b17
> [!CAUTION] > Merging this PR will automatically publish to **PyPI** and create a **GitHub release**. For the full release process, see [`.github/RELEASING.md`](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md). --- _Everything below this line will be the GitHub release body._ --- ## [0.1.6](https://github.com/langchain-ai/deepagents/compare/deepagents-code==0.1.5...deepagents-code==0.1.6) (2026-05-27) ### Features * `/install` optional extras ([#3606](https://github.com/langchain-ai/deepagents/issues/3606)) ([7ffaa93](https://github.com/langchain-ai/deepagents/commit/7ffaa93dca6910cd454040d416ff7e0e8bcbcea5)) * Surface deferred MCP reconnect state in `/mcp` ([#3612](https://github.com/langchain-ai/deepagents/issues/3612)) ([d8205c2](https://github.com/langchain-ai/deepagents/commit/d8205c2a39d00e8b6f7f70afe7cc9bb92fee42d8)) * Surface MCP servers awaiting reconnect on splash banner ([#3615](https://github.com/langchain-ai/deepagents/issues/3615)) ([24c5258](https://github.com/langchain-ai/deepagents/commit/24c5258ae6664bc3d3875d8065038716f7c86161)) ### Bug Fixes * Cancel server-side runs before re-trying interrupted-state writes ([#3611](https://github.com/langchain-ai/deepagents/issues/3611)) ([7d46357](https://github.com/langchain-ai/deepagents/commit/7d46357c5446bbc6225f972fd66dc52af8dd0547)) * Editable-install guidance for adding extras ([#3610](https://github.com/langchain-ai/deepagents/issues/3610)) ([771e55f](https://github.com/langchain-ai/deepagents/commit/771e55f171b8087b876ecf767d2f23c86c2a27b9)) * Reuse persisted DCR loopback port across OAuth launches ([#3613](https://github.com/langchain-ai/deepagents/issues/3613)) ([f2f7471](https://github.com/langchain-ai/deepagents/commit/f2f747104945ac79b68e6524d6da886f7cfeb1b0)) * Polish MCP auth success UX ([#3614](https://github.com/langchain-ai/deepagents/issues/3614)) ([d225cb4](https://github.com/langchain-ai/deepagents/commit/d225cb41f41a0a9b2876aff2443eaa0ada24bf29)) --- _Everything above this line will be the GitHub release body._ --- > [!NOTE] > A **New Contributors** section is appended to the GitHub release notes automatically at publish time (see [Release Pipeline](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md#release-pipeline), step 2). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Mason Daugherty <github@mdrxy.com>
27 lines
975 B
Python
27 lines
975 B
Python
"""Version information and lightweight constants for `deepagents-code`."""
|
|
|
|
# Keep the `x-release-please-version` annotation — release-please uses it to
|
|
# bump `__version__` in sync with `pyproject.toml` on every release PR.
|
|
__version__ = "0.1.6" # x-release-please-version
|
|
|
|
DOCS_URL = "https://docs.langchain.com/oss/python/deepagents/code"
|
|
"""URL for `deepagents-code` documentation."""
|
|
|
|
PYPI_URL = "https://pypi.org/pypi/deepagents-code/json"
|
|
"""PyPI JSON API endpoint for version checks."""
|
|
|
|
SDK_PYPI_URL = "https://pypi.org/pypi/deepagents/json"
|
|
"""PyPI JSON API endpoint for reading `deepagents` SDK release metadata.
|
|
|
|
The CLI only reads release-age metadata from this endpoint; it never
|
|
performs SDK update checks.
|
|
"""
|
|
|
|
CHANGELOG_URL = (
|
|
"https://github.com/langchain-ai/deepagents/blob/main/libs/code/CHANGELOG.md"
|
|
)
|
|
"""URL for the full changelog."""
|
|
|
|
USER_AGENT = f"deepagents-code/{__version__} update-check"
|
|
"""User-Agent header sent with PyPI requests."""
|