Skip to content

Commit 7246f29

Browse files
authored
Merge pull request #20 from onkernel/release-please--branches--main--changes--next
release: 0.2.0
2 parents d555aa6 + 5f6c53f commit 7246f29

File tree

7 files changed

+20
-13
lines changed

7 files changed

+20
-13
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 7
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-39aa058a60035c34a636e7f580b4b9c76b05400ae401ef04a761572b20a5425b.yml
33
openapi_spec_hash: bb79a204f9edb6b6ccfe783a0a82a423
4-
config_hash: 5c90b7df80e8f222bb945b14b8d1fec0
4+
config_hash: 3eb1ed1dd0067258984b31d53a0dab48

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.2.0 (2025-05-21)
4+
5+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0...v0.2.0)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([34cef34](https://github.com/onkernel/kernel-python-sdk/commit/34cef341e4ec5e5734f167746ea66664eb4b8474))
10+
11+
12+
### Chores
13+
14+
* **internal:** version bump ([924b2f7](https://github.com/onkernel/kernel-python-sdk/commit/924b2f76f4ffbe5a6c5134efcc9d39d016dcf2a7))
15+
316
## 0.1.0 (2025-05-21)
417

518
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)

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ client = Kernel(
3636
deployment = client.apps.deployments.create(
3737
entrypoint_rel_path="main.ts",
3838
file=b"REPLACE_ME",
39-
env_vars={
40-
"OPENAI_API_KEY": "x",
41-
"LOG_LEVEL": "debug",
42-
},
39+
env_vars={"OPENAI_API_KEY": "x"},
4340
version="1.0.0",
4441
)
4542
print(deployment.apps)
@@ -70,10 +67,7 @@ async def main() -> None:
7067
deployment = await client.apps.deployments.create(
7168
entrypoint_rel_path="main.ts",
7269
file=b"REPLACE_ME",
73-
env_vars={
74-
"OPENAI_API_KEY": "x",
75-
"LOG_LEVEL": "debug",
76-
},
70+
env_vars={"OPENAI_API_KEY": "x"},
7771
version="1.0.0",
7872
)
7973
print(deployment.apps)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kernel"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "The official Python library for the kernel API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

scripts/utils/upload-artifact.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ UPLOAD_RESPONSE=$(tar -cz . | curl -v -X PUT \
1818

1919
if echo "$UPLOAD_RESPONSE" | grep -q "HTTP/[0-9.]* 200"; then
2020
echo -e "\033[32mUploaded build to Stainless storage.\033[0m"
21-
echo -e "\033[32mInstallation: pip install --pre 'https://pkg.stainless.com/s/kernel-python/$SHA'\033[0m"
21+
echo -e "\033[32mInstallation: pip install 'https://pkg.stainless.com/s/kernel-python/$SHA'\033[0m"
2222
else
2323
echo -e "\033[31mFailed to upload artifact.\033[0m"
2424
exit 1

src/kernel/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "kernel"
4-
__version__ = "0.1.0" # x-release-please-version
4+
__version__ = "0.2.0" # x-release-please-version

0 commit comments

Comments
 (0)