From 924b2f76f4ffbe5a6c5134efcc9d39d016dcf2a7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 18:07:16 +0000 Subject: [PATCH 1/3] chore(internal): version bump --- scripts/utils/upload-artifact.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils/upload-artifact.sh b/scripts/utils/upload-artifact.sh index c55ebbc..7b344b4 100755 --- a/scripts/utils/upload-artifact.sh +++ b/scripts/utils/upload-artifact.sh @@ -18,7 +18,7 @@ UPLOAD_RESPONSE=$(tar -cz . | curl -v -X PUT \ if echo "$UPLOAD_RESPONSE" | grep -q "HTTP/[0-9.]* 200"; then echo -e "\033[32mUploaded build to Stainless storage.\033[0m" - echo -e "\033[32mInstallation: pip install --pre 'https://pkg.stainless.com/s/kernel-python/$SHA'\033[0m" + echo -e "\033[32mInstallation: pip install 'https://pkg.stainless.com/s/kernel-python/$SHA'\033[0m" else echo -e "\033[31mFailed to upload artifact.\033[0m" exit 1 From 34cef341e4ec5e5734f167746ea66664eb4b8474 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 18:11:09 +0000 Subject: [PATCH 2/3] feat(api): update via SDK Studio --- .stats.yml | 2 +- README.md | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.stats.yml b/.stats.yml index bf7a932..b26bed3 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: 5c90b7df80e8f222bb945b14b8d1fec0 +config_hash: 3eb1ed1dd0067258984b31d53a0dab48 diff --git a/README.md b/README.md index df3236b..cd2df75 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,7 @@ client = Kernel( deployment = client.apps.deployments.create( entrypoint_rel_path="main.ts", file=b"REPLACE_ME", - env_vars={ - "OPENAI_API_KEY": "x", - "LOG_LEVEL": "debug", - }, + env_vars={"OPENAI_API_KEY": "x"}, version="1.0.0", ) print(deployment.apps) @@ -70,10 +67,7 @@ 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", - "LOG_LEVEL": "debug", - }, + env_vars={"OPENAI_API_KEY": "x"}, version="1.0.0", ) print(deployment.apps) From 5f6c53f14670f6aa37a04401db0b06f9bb9a022b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 18:11:42 +0000 Subject: [PATCH 3/3] release: 0.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- src/kernel/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3d2ac0b..10f3091 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 25316d8..fd4912e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.2.0 (2025-05-21) + +Full Changelog: [v0.1.0...v0.2.0](https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0...v0.2.0) + +### Features + +* **api:** update via SDK Studio ([34cef34](https://github.com/onkernel/kernel-python-sdk/commit/34cef341e4ec5e5734f167746ea66664eb4b8474)) + + +### Chores + +* **internal:** version bump ([924b2f7](https://github.com/onkernel/kernel-python-sdk/commit/924b2f76f4ffbe5a6c5134efcc9d39d016dcf2a7)) + ## 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) diff --git a/pyproject.toml b/pyproject.toml index ac353b9..034e116 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kernel" -version = "0.1.0" +version = "0.2.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 5d07ad9..4f726fa 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" # x-release-please-version +__version__ = "0.2.0" # x-release-please-version