mirror of
https://github.com/langchain-ai/deepagents.git
synced 2026-07-25 04:46:03 -04:00
db2fef2953
> [!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.27](https://github.com/langchain-ai/deepagents/compare/deepagents-code==0.1.26...deepagents-code==0.1.27) (2026-06-26) ### Features * Show last update check time in `dcode doctor` ([#4307](https://github.com/langchain-ai/deepagents/issues/4307)) ([b669f37](https://github.com/langchain-ai/deepagents/commit/b669f37fb08998cfbf983da76f57822215614e7b)) ### Bug Fixes * `dcode doctor` shows `not configured` for unset tracing ([#4318](https://github.com/langchain-ai/deepagents/issues/4318)) ([e323d0c](https://github.com/langchain-ai/deepagents/commit/e323d0c7d91f3b11e03a016c14cf52008dc66b55)) * Drop duplicate token-request `client_id` under Basic auth ([#4323](https://github.com/langchain-ai/deepagents/issues/4323)) ([426dfad](https://github.com/langchain-ai/deepagents/commit/426dfad3ea1e453914cb87efa8fc70fb85a9efcb)) * Include skill invocations in input history ([#4211](https://github.com/langchain-ai/deepagents/issues/4211)) ([7b8d0b2](https://github.com/langchain-ai/deepagents/commit/7b8d0b2ec184e0d9a0cbe858a0d9a7128791969d)) * Offload `create_model` in server graph factory to unblock Codex ([#4324](https://github.com/langchain-ai/deepagents/issues/4324)) ([064ea0c](https://github.com/langchain-ai/deepagents/commit/064ea0c6851353d0b0bc347a0758149765688945)) --- _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
976 B
Python
27 lines
976 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.27" # 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."""
|