Skip to content

Commit aee2fc9

Browse files
committed
chore: bump version to v0.1.5
1 parent 9053612 commit aee2fc9

15 files changed

Lines changed: 40 additions & 43 deletions

File tree

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,13 @@ quality: format-check lint-check typecheck ## Run all quality checks
117117
# ===================================================================
118118

119119
build: clean ## Build the package
120-
uv build
120+
uv run scripts/build.py
121121

122122
publish-test: build ## Publish to TestPyPI
123-
uv run twine upload --repository testpypi dist/*
123+
uv run scripts/publish.py --test
124124

125125
publish: build ## Publish to PyPI (use with caution!)
126-
uv run twine upload dist/*
127-
128-
install-local: build ## Install package locally from built wheel
129-
uv tool install dist/*.whl --force
126+
uv run scripts/publish.py
130127

131128
# ===================================================================
132129
# RUNNING THE CLI

packages/deepctl-cmd-debug-audio/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-debug-audio"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Audio debug subcommand for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "debug", "audio", "diagnostics"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"pydantic>=2.0.0",

packages/deepctl-cmd-debug-browser/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-debug-browser"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Browser debug subcommand for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "debug", "browser", "diagnostics"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"pydantic>=2.0.0",

packages/deepctl-cmd-debug-network/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-debug-network"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Network debug subcommand for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "debug", "network", "diagnostics"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"pydantic>=2.0.0",

packages/deepctl-cmd-debug/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-debug"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Debug command group for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "debug", "diagnostics"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"pydantic>=2.0.0",

packages/deepctl-cmd-login/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-login"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Login command for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "login", "authentication"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"deepgram-sdk>=3.0.0",

packages/deepctl-cmd-mcp/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-mcp"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "MCP server command for deepctl to interact with Deepgram's AI assistant service"
99
readme = "README.md"
1010
authors = [{ name = "Deepgram", email = "devrel@deepgram.com" }]
1111
requires-python = ">=3.10"
1212
license = "MIT"
1313
dependencies = [
14-
"deepctl-core>=0.1.4",
14+
"deepctl-core>=0.1.5",
1515
"mcp>=1.0.0",
1616
"rich>=13.9.4",
1717
"click>=8.1.7",

packages/deepctl-cmd-projects/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-projects"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Projects command for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,7 +21,7 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "projects", "management"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
24+
"deepctl-core>=0.1.5",
2525
"click>=8.0.0",
2626
"rich>=13.0.0",
2727
"deepgram-sdk>=3.0.0",

packages/deepctl-cmd-transcribe/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-transcribe"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Transcribe command for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,8 +21,8 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "transcribe", "speech", "audio"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
25-
"deepctl-shared-utils>=0.1.4",
24+
"deepctl-core>=0.1.5",
25+
"deepctl-shared-utils>=0.1.5",
2626
"click>=8.0.0",
2727
"rich>=13.0.0",
2828
"deepgram-sdk>=3.0.0",

packages/deepctl-cmd-usage/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deepctl-cmd-usage"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Usage command for deepctl"
99
readme = "README.md"
1010
license = "MIT"
@@ -21,8 +21,8 @@ classifiers = [
2121
keywords = ["deepgram", "cli", "usage", "statistics"]
2222
requires-python = ">=3.10"
2323
dependencies = [
24-
"deepctl-core>=0.1.4",
25-
"deepctl-shared-utils>=0.1.4",
24+
"deepctl-core>=0.1.5",
25+
"deepctl-shared-utils>=0.1.5",
2626
"click>=8.0.0",
2727
"rich>=13.0.0",
2828
"deepgram-sdk>=3.0.0",

0 commit comments

Comments
 (0)