release: langchain 1.0.8 (#34019)

This commit is contained in:
Sydney Runkle
2025-11-19 09:12:37 -05:00
committed by GitHub
parent e150b7c7e3
commit b67cd71d7d
4 changed files with 7 additions and 5 deletions

View File

@@ -9,6 +9,8 @@ on:
paths:
- "libs/core/pyproject.toml"
- "libs/core/langchain_core/version.py"
- "libs/langchain_v1/pyproject.toml"
- "libs/langchain_v1/langchain/__init__.py"
permissions:
contents: read
@@ -20,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: "✅ Verify pyproject.toml & version.py Match"
- name: "✅ Verify pyproject.toml & version files Match"
run: |
# Check core versions
CORE_PYPROJECT_VERSION=$(grep -Po '(?<=^version = ")[^"]*' libs/core/pyproject.toml)

View File

@@ -1,3 +1,3 @@
"""Main entrypoint into LangChain."""
__version__ = "1.0.5"
__version__ = "1.0.8"

View File

@@ -9,10 +9,10 @@ license = { text = "MIT" }
readme = "README.md"
authors = []
version = "1.0.7"
version = "1.0.8"
requires-python = ">=3.10.0,<4.0.0"
dependencies = [
"langchain-core>=1.0.4,<2.0.0",
"langchain-core>=1.0.6,<2.0.0",
"langgraph>=1.0.2,<1.1.0",
"pydantic>=2.7.4,<3.0.0",
]

View File

@@ -1788,7 +1788,7 @@ wheels = [
[[package]]
name = "langchain"
version = "1.0.7"
version = "1.0.8"
source = { editable = "." }
dependencies = [
{ name = "langchain-core" },