Files
deepagents/libs/code/deepagents_code/_version.py
T
github-actions[bot] 8eb909a59b release(deepagents-code): 0.1.39 (#4725)
> [!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).

---

_Release notes preview: keep this section in sync with the package
`CHANGELOG.md`. The published GitHub release body is extracted from the
merged `CHANGELOG.md` by `release.yml`, not from this PR description._

---


##
[0.1.39](https://github.com/langchain-ai/deepagents/compare/deepagents-code==0.1.38...deepagents-code==0.1.39)
(2026-07-14)

### Bug fixes

- Improved Debug Console log retention by partitioning retained logs by
level ([#4718](https://github.com/langchain-ai/deepagents/issues/4718))
([c6e3b35](https://github.com/langchain-ai/deepagents/commit/c6e3b351f1826aa6ea97be244acd867950a032ee)).
- Fixed `/offload` to run server-side
([#4696](https://github.com/langchain-ai/deepagents/issues/4696))
([564e5a0](https://github.com/langchain-ai/deepagents/commit/564e5a05bca5236ae33ce1147865111f931d257c)).

_End release notes preview._

---

> [!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: langchain-oss-automated-triage[bot] <248757908+langchain-oss-automated-triage[bot]@users.noreply.github.com>
2026-07-14 15:30:28 -04:00

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.39" # 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."""