diff --git a/.gitignore b/.gitignore index 7e1cf203..55197503 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,9 @@ build/ coverage.xml htmlcov/ +# macOS Finder metadata +.DS_Store + # Editor/agent local artifacts: keep personal settings local, but track the # team-shared bits (.claude/settings.json, agents/, skills/). .claude/settings.local.json diff --git a/aai_cli/__init__.py b/aai_cli/__init__.py index 3dc1f76b..485f44ac 100644 --- a/aai_cli/__init__.py +++ b/aai_cli/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index a77e3013..9c9152e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "aai-cli" -version = "0.1.0" +version = "0.1.1" description = "Command-line interface for AssemblyAI" readme = "README.md" license = "MIT" diff --git a/scripts/bump_patch.sh b/scripts/bump_patch.sh index 8906ca98..0ffc8f56 100755 --- a/scripts/bump_patch.sh +++ b/scripts/bump_patch.sh @@ -70,5 +70,10 @@ replace_in_file() { replace_in_file pyproject.toml "s/^version = \"${version}\"/version = \"${new_version}\"/" replace_in_file aai_cli/__init__.py "s/__version__ = \"${version}\"/__version__ = \"${new_version}\"/" -info "Updated pyproject.toml and aai_cli/__init__.py to ${new_version}." +# Refresh uv.lock so the project version in the lockfile stays in sync; the gate +# runs `uv lock --check` and would otherwise fail on the stale lock. +info "Refreshing uv.lock." +uv lock || err "uv lock failed." + +info "Updated pyproject.toml, aai_cli/__init__.py, and uv.lock to ${new_version}." info "Next: commit the change, open + merge the PR, then run ./scripts/cut_release.sh on main." diff --git a/uv.lock b/uv.lock index 258f044a..dd5d4f8a 100644 --- a/uv.lock +++ b/uv.lock @@ -18,7 +18,7 @@ resolution-markers = [ [[package]] name = "aai-cli" -version = "0.1.0" +version = "0.1.1" source = { editable = "." } dependencies = [ { name = "assemblyai" }, @@ -1257,11 +1257,11 @@ wheels = [ [[package]] name = "narwhals" -version = "2.22.1" +version = "2.22.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/62/3c/c4ef2164a71c1a63d7f1ae411c4082c5fa872405106db60a4b7114989ad7/narwhals-2.22.1.tar.gz", hash = "sha256:d62920805a0a43b7ff8b54b0c0d3142d796f8a9301836ada37e573d6a33cbcd9", size = 647493, upload-time = "2026-06-05T12:34:34.051Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/1c/c80cb7719721a44846c6301ef118434bae30a423924bfad3a47f16bdc064/narwhals-2.22.0.tar.gz", hash = "sha256:6486282bb7e4b4ab55963efbd8be1451b764cc4874b74d1fd625eba9dc60b86f", size = 417565, upload-time = "2026-06-01T13:34:36.249Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/48/ca/36339329c4604adbcc99c899b7eb1ce1a555c499b6a6860757dc9bfed36d/narwhals-2.22.1-py3-none-any.whl", hash = "sha256:60567d774edf77db53906f89d9fbd164e66e56d66d388e1e6990f17ac33cfb53", size = 454815, upload-time = "2026-06-05T12:34:32.289Z" }, + { url = "https://files.pythonhosted.org/packages/1f/b6/e7cdde7b8e90d5dff25b622f95833ef26567ad184c977278b93a1cbd5717/narwhals-2.22.0-py3-none-any.whl", hash = "sha256:1421797ede01789cc1537619dbc3f36f840737240f748fdb24a60a0225fc80be", size = 453815, upload-time = "2026-06-01T13:34:34.127Z" }, ] [[package]]