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
6 changes: 3 additions & 3 deletions .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
".": "0.2.15",
"packages/deepctl-core": "0.2.6",
".": "0.2.16",
"packages/deepctl-core": "0.2.7",
"packages/deepctl-shared-utils": "0.1.11",
"packages/deepctl-cmd-api": "0.0.2",
"packages/deepctl-cmd-login": "0.1.14",
Expand All @@ -16,7 +16,7 @@
"packages/deepctl-cmd-mcp": "0.1.12",
"packages/deepctl-cmd-update": "0.2.4",
"packages/deepctl-cmd-plugin": "0.1.11",
"packages/deepctl-cmd-skills": "0.0.4",
"packages/deepctl-cmd-skills": "0.0.5",
"packages/deepctl-cmd-init": "0.0.4",
"packages/deepctl-cmd-models": "0.0.2",
"packages/deepctl-cmd-speak": "0.0.2",
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.2.16](https://github.com/deepgram/cli/compare/v0.2.15...v0.2.16) (2026-03-31)


### Features

* **skills:** fetch only repo skills, install as individual slash commands ([243ca0f](https://github.com/deepgram/cli/commit/243ca0fc427a580391153f47dabf27211342dd52))
* **web:** add all-commands showcase section to landing page ([2e8c843](https://github.com/deepgram/cli/commit/2e8c84327b7f95d069bdc4ed48d906cd3591e75a))


### Bug Fixes

* **ci:** deploy staging on every push to main, not just web changes ([399ceba](https://github.com/deepgram/cli/commit/399cebaf89df3e42044e7179e74a0e97d75bfe27))

## [0.2.15](https://github.com/deepgram/cli/compare/v0.2.14...v0.2.15) (2026-03-31)


Expand Down
7 changes: 7 additions & 0 deletions packages/deepctl-cmd-skills/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.0.5](https://github.com/deepgram/cli/compare/deepctl-cmd-skills-v0.0.4...deepctl-cmd-skills-v0.0.5) (2026-03-31)


### Features

* **skills:** fetch only repo skills, install as individual slash commands ([243ca0f](https://github.com/deepgram/cli/commit/243ca0fc427a580391153f47dabf27211342dd52))

## [0.0.4](https://github.com/deepgram/cli/compare/deepctl-cmd-skills-v0.0.3...deepctl-cmd-skills-v0.0.4) (2026-03-25)


Expand Down
2 changes: 1 addition & 1 deletion packages/deepctl-cmd-skills/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "deepctl-cmd-skills"
description = "AI coding assistant skill management for deepctl"
readme = "README.md"
version = "0.0.4" # x-release-please-version
version = "0.0.5" # x-release-please-version
requires-python = ">=3.10"
authors = [{ name = "Deepgram DevRel", email = "devrel@deepgram.com" }]
dependencies = [
Expand Down
7 changes: 7 additions & 0 deletions packages/deepctl-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.7](https://github.com/deepgram/cli/compare/deepctl-core-v0.2.6...deepctl-core-v0.2.7) (2026-03-31)


### Features

* **skills:** fetch only repo skills, install as individual slash commands ([243ca0f](https://github.com/deepgram/cli/commit/243ca0fc427a580391153f47dabf27211342dd52))

## [0.2.6](https://github.com/deepgram/cli/compare/deepctl-core-v0.2.5...deepctl-core-v0.2.6) (2026-03-30)


Expand Down
2 changes: 1 addition & 1 deletion packages/deepctl-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "deepctl-core"
version = "0.2.6" # x-release-please-version
version = "0.2.7" # x-release-please-version
description = "Core components for deepctl"
readme = "README.md"
license = "MIT"
Expand Down
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 = "setuptools.build_meta"

[project]
name = "deepctl"
version = "0.2.15" # x-release-please-version
version = "0.2.16" # x-release-please-version
description = "Official Deepgram CLI for speech recognition and audio intelligence"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/deepctl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""deepctl - Official command-line interface for Deepgram's speech
recognition API."""

__version__ = "0.2.15" # x-release-please-version
__version__ = "0.2.16" # x-release-please-version
__author__ = "Deepgram"
__email__ = "devrel@deepgram.com"
__license__ = "MIT"
Expand Down