Skip to content

Commit 60d9214

Browse files
authored
Merge pull request #20 from onkernel/release-please--branches--main--changes--next--components--sdk
release: 0.1.0
2 parents 5471fe1 + 3ed230d commit 60d9214

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
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-alpha.16"
2+
".": "0.1.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: 4dfa4d870ce0e23e31ce33ab6a53dd21
4+
config_hash: 5c90b7df80e8f222bb945b14b8d1fec0

CHANGELOG.md

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

3+
## 0.1.0 (2025-05-21)
4+
5+
Full Changelog: [v0.1.0-alpha.16...v0.1.0](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.16...v0.1.0)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([bccf7be](https://github.com/onkernel/kernel-node-sdk/commit/bccf7befab57f52fe30e00724c5c32b28d63ec03))
10+
311
## 0.1.0-alpha.16 (2025-05-20)
412

513
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async function main() {
3131
const deployment = await client.apps.deployments.create({
3232
entrypoint_rel_path: 'main.ts',
3333
file: fs.createReadStream('path/to/file'),
34-
env_vars: { OPENAI_API_KEY: 'x' },
34+
env_vars: { OPENAI_API_KEY: 'x', LOG_LEVEL: 'debug' },
3535
version: '1.0.0',
3636
});
3737

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/sdk",
3-
"version": "0.1.0-alpha.16",
3+
"version": "0.1.0",
44
"description": "The official TypeScript library for the Kernel API",
55
"author": "Kernel <>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.16'; // x-release-please-version
1+
export const VERSION = '0.1.0'; // x-release-please-version

0 commit comments

Comments
 (0)