Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion aai_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 6 additions & 1 deletion scripts/bump_patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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."
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading