From b64ca3c55fc668ad0dab91b5199444c87f0e400a Mon Sep 17 00:00:00 2001 From: Logan Markewich Date: Thu, 6 Feb 2025 16:18:28 -0600 Subject: [PATCH 1/3] v0.6.0 --- llama_parse/pyproject.toml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_parse/pyproject.toml b/llama_parse/pyproject.toml index 4463f07..17253b0 100644 --- a/llama_parse/pyproject.toml +++ b/llama_parse/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "llama-parse" -version = "0.5.21" +version = "0.6.0" description = "Parse files into RAG-Optimized formats." authors = ["Logan Markewich "] license = "MIT" diff --git a/pyproject.toml b/pyproject.toml index 87919f1..f69bc20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ python_version = "3.10" [tool.poetry] name = "llama-cloud-services" -version = "0.1.0" +version = "0.6.0" description = "Tailored SDK clients for LlamaCloud services." authors = ["Logan Markewich "] license = "MIT" From f3530a89b4cb1edab57b3d18eef90671b7059473 Mon Sep 17 00:00:00 2001 From: Logan Markewich Date: Thu, 6 Feb 2025 16:45:28 -0600 Subject: [PATCH 2/3] nit release --- .github/workflows/publish_release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 9c5eab3..00c2180 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -38,7 +38,6 @@ jobs: with: poetry_version: ${{ env.POETRY_VERSION }} python_version: ${{ env.PYTHON_VERSION }} - working_directory: "llama_cloud_services" pypi_token: ${{ secrets.LLAMA_PARSE_PYPI_TOKEN }} poetry_install_options: "--without dev" From 218d26ab8d27dcbf134d3f00b5c54d10b74da0bf Mon Sep 17 00:00:00 2001 From: Logan Markewich Date: Thu, 6 Feb 2025 16:50:55 -0600 Subject: [PATCH 3/3] nit --- tests/report/test_llama_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/report/test_llama_report.py b/tests/report/test_llama_report.py index 9d85d9d..97a9bec 100644 --- a/tests/report/test_llama_report.py +++ b/tests/report/test_llama_report.py @@ -97,7 +97,7 @@ async def test_report_plan_workflow(report: ReportClient) -> None: # Get edit suggestions suggestions = await report.asuggest_edits( - "Make the text more formal.", auto_history=True + "TLDR section header more formal.", auto_history=True ) assert len(suggestions) > 0