Compare commits

...

2 Commits

Author SHA1 Message Date
github-actions[bot] be19185503 chore: version packages (#954)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-03 20:14:04 -04:00
Adrian Lyjak 7571b0d6c4 Missed some things again with tag fixes (#955)
guh
2025-10-03 20:12:53 -04:00
8 changed files with 26 additions and 13 deletions
-5
View File
@@ -1,5 +0,0 @@
---
"llama-cloud-services-py": patch
---
Fixup and test versioning
+6
View File
@@ -1,5 +1,11 @@
# llama-cloud-services-py
## 0.6.72
### Patch Changes
- ad6734b: Fixup and test versioning
## 0.6.71
### Patch Changes
+8
View File
@@ -0,0 +1,8 @@
# llama_parse
## 0.6.72
### Patch Changes
- Updated dependencies [ad6734b]
- llama-cloud-services-py@0.6.72
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llama_parse",
"version": "0.6.71",
"version": "0.6.72",
"description": "",
"main": "index.js",
"private": false,
+2 -2
View File
@@ -11,13 +11,13 @@ dev = [
[project]
name = "llama-parse"
version = "0.6.71"
version = "0.6.72"
description = "Parse files into RAG-Optimized formats."
authors = [{name = "Logan Markewich", email = "logan@llamaindex.ai"}]
requires-python = ">=3.9,<4.0"
readme = "README.md"
license = "MIT"
dependencies = ["llama-cloud-services>=0.6.71"]
dependencies = ["llama-cloud-services>=0.6.72"]
[project.scripts]
llama-parse = "llama_parse.cli.main:parse"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llama-cloud-services-py",
"version": "0.6.71",
"version": "0.6.72",
"private": false,
"license": "MIT",
"scripts": {},
+1 -1
View File
@@ -19,7 +19,7 @@ dev = [
[project]
name = "llama-cloud-services"
version = "0.6.71"
version = "0.6.72"
description = "Tailored SDK clients for LlamaCloud services."
authors = [{name = "Logan Markewich", email = "logan@runllama.ai"}]
requires-python = ">=3.9,<4.0"
+7 -3
View File
@@ -56,7 +56,7 @@ class Package:
path: Path
def python_package_name(self) -> str | None:
if str(self.path).startswith("py"):
if "/py/" in str(self.path) or str(self.path).endswith("/py"):
return self.name.removesuffix("-py")
return None
@@ -107,7 +107,10 @@ def _sync_package_version_with_pyproject(
continue
target_version = by_python_name[pkg].version
new_dep = re.sub(
r"(==|>=)\s*([0-9A-Za-z_.+-]+)", rf"\1{target_version}", dep, count=1
r"(==|>=)\s*([0-9A-Za-z_.+-]+)",
lambda m: m.group(1) + target_version,
dep,
count=1,
)
if new_dep != dep:
deps[i] = new_dep
@@ -190,7 +193,8 @@ def publish(tag: bool, dry_run: bool, js: bool, py: bool) -> None:
if tag:
if dry_run:
click.echo("Dry run, skipping tag. Would run:")
click.echo(" git tag llama-cloud-services@<version>")
click.echo(" npx @changesets/cli tag")
click.echo(" git push --tags")
else:
# Let changesets create JS-related tags as usual
_run_command(["npx", "@changesets/cli", "tag"])