diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 08e82c45..3d2ac0bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.15" + ".": "0.1.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 24a77a34..bf7a9321 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 7 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-39aa058a60035c34a636e7f580b4b9c76b05400ae401ef04a761572b20a5425b.yml openapi_spec_hash: bb79a204f9edb6b6ccfe783a0a82a423 -config_hash: 4dfa4d870ce0e23e31ce33ab6a53dd21 +config_hash: 5c90b7df80e8f222bb945b14b8d1fec0 diff --git a/CHANGELOG.md b/CHANGELOG.md index bbd72b11..25316d8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0 (2025-05-21) + +Full Changelog: [v0.1.0-alpha.15...v0.1.0](https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0-alpha.15...v0.1.0) + +### Features + +* **api:** update via SDK Studio ([0950b19](https://github.com/onkernel/kernel-python-sdk/commit/0950b197ae15bd4f5feecaee80a8de3c54a1e900)) + ## 0.1.0-alpha.15 (2025-05-20) Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0-alpha.14...v0.1.0-alpha.15) diff --git a/README.md b/README.md index b9a0ae80..df3236b5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The REST API documentation can be found on [docs.onkernel.com](https://docs.onke ```sh # install from PyPI -pip install --pre kernel +pip install kernel ``` ## Usage @@ -36,7 +36,10 @@ client = Kernel( deployment = client.apps.deployments.create( entrypoint_rel_path="main.ts", file=b"REPLACE_ME", - env_vars={"OPENAI_API_KEY": "x"}, + env_vars={ + "OPENAI_API_KEY": "x", + "LOG_LEVEL": "debug", + }, version="1.0.0", ) print(deployment.apps) @@ -67,7 +70,10 @@ async def main() -> None: deployment = await client.apps.deployments.create( entrypoint_rel_path="main.ts", file=b"REPLACE_ME", - env_vars={"OPENAI_API_KEY": "x"}, + env_vars={ + "OPENAI_API_KEY": "x", + "LOG_LEVEL": "debug", + }, version="1.0.0", ) print(deployment.apps) diff --git a/pyproject.toml b/pyproject.toml index 0440171f..ac353b9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kernel" -version = "0.1.0-alpha.15" +version = "0.1.0" description = "The official Python library for the kernel API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/kernel/_version.py b/src/kernel/_version.py index 1f7f2721..5d07ad99 100644 --- a/src/kernel/_version.py +++ b/src/kernel/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "kernel" -__version__ = "0.1.0-alpha.15" # x-release-please-version +__version__ = "0.1.0" # x-release-please-version