Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.18.0"
".": "0.19.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 65
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-015c11efc34c81d4d82a937c017f5eb789ea3ca21a05b70e2ed31c069b839293.yml
openapi_spec_hash: 3dcab2044da305f376cecf4eca38caee
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-8c7e0b9069a18bc9437269618cde251ba15568771f2b4811d57f0d5f0fd5692d.yml
openapi_spec_hash: aa2544d0bf0e7e875939aaa8e2e114d3
config_hash: 0fbdda3a736cc2748ca33371871e61b3
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.19.0 (2025-11-07)

Full Changelog: [v0.18.0...v0.19.0](https://github.com/onkernel/kernel-python-sdk/compare/v0.18.0...v0.19.0)

### Features

* Remove price gating on computer endpoints ([cbbdaee](https://github.com/onkernel/kernel-python-sdk/commit/cbbdaee2225d593a7abbe04e3bd768476d06340c))


### Chores

* **internal/tests:** avoid race condition with implicit client cleanup ([4d011fd](https://github.com/onkernel/kernel-python-sdk/commit/4d011fd41e10e5aaa49bb2447e27b71c8240e205))
* **internal:** grammar fix (it's -> its) ([fcdf068](https://github.com/onkernel/kernel-python-sdk/commit/fcdf06877b370bf8c2abe047c5dcff7597dfadd9))

## 0.18.0 (2025-10-30)

Full Changelog: [v0.17.0...v0.18.0](https://github.com/onkernel/kernel-python-sdk/compare/v0.17.0...v0.18.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "kernel"
version = "0.18.0"
version = "0.19.0"
description = "The official Python library for the kernel API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/_utils/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def is_given(obj: _T | NotGiven | Omit) -> TypeGuard[_T]:
# Type safe methods for narrowing types with TypeVars.
# The default narrowing for isinstance(obj, dict) is dict[unknown, unknown],
# however this cause Pyright to rightfully report errors. As we know we don't
# care about the contained types we can safely use `object` in it's place.
# care about the contained types we can safely use `object` in its place.
#
# There are two separate functions defined, `is_*` and `is_*_t` for different use cases.
# `is_*` is for when you're dealing with an unknown input
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "kernel"
__version__ = "0.18.0" # x-release-please-version
__version__ = "0.19.0" # x-release-please-version
8 changes: 4 additions & 4 deletions src/kernel/resources/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def list(
Args:
app_name: Filter results by application name.

limit: Limit the number of app to return.
limit: Limit the number of apps to return.

offset: Offset the number of app to return.
offset: Offset the number of apps to return.

version: Filter results by version label.

Expand Down Expand Up @@ -140,9 +140,9 @@ def list(
Args:
app_name: Filter results by application name.

limit: Limit the number of app to return.
limit: Limit the number of apps to return.

offset: Offset the number of app to return.
offset: Offset the number of apps to return.

version: Filter results by version label.

Expand Down
4 changes: 2 additions & 2 deletions src/kernel/types/app_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ class AppListParams(TypedDict, total=False):
"""Filter results by application name."""

limit: int
"""Limit the number of app to return."""
"""Limit the number of apps to return."""

offset: int
"""Offset the number of app to return."""
"""Offset the number of apps to return."""

version: str
"""Filter results by version label."""
Loading