Skip to content

Commit

Permalink
properly increment version in cli (#12685)
Browse files Browse the repository at this point in the history
Went from 0.0.9 -> 0.0.11 without releasing. Back to 10, then release.
  • Loading branch information
efriis authored Nov 1, 2023
1 parent b825ddd commit 44c8b15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/cli/langchain_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from langchain_cli.namespaces import app as app_namespace
from langchain_cli.namespaces import template as template_namespace

__version__ = "0.0.11"
__version__ = "0.0.10"

app = typer.Typer(no_args_is_help=True, add_completion=False)
app.add_typer(
Expand Down
2 changes: 1 addition & 1 deletion libs/cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-cli"
version = "0.0.11"
version = "0.0.10"
description = "CLI for interacting with LangChain"
authors = ["Erick Friis <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 44c8b15

Please sign in to comment.