mirror of
https://github.com/langchain-ai/deepagents.git
synced 2026-08-27 02:41:20 -04:00
3023c7202e
> [!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.5](https://github.com/langchain-ai/deepagents/compare/deepagents-code==0.1.4...deepagents-code==0.1.5)
(2026-05-26)
### Bug Fixes
* Join aiosqlite worker thread after close
([#3585](https://github.com/langchain-ai/deepagents/issues/3585))
([152cec0](https://github.com/langchain-ai/deepagents/commit/152cec04affed3508d4bfdffe7cae522b16d45e6))
---
_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.5" # 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."""
|