Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 1.39.0 #131

Merged
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 @@
{
".": "1.38.0"
".": "1.39.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 50
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-7d90eac366f34605caf4124314f36429756573b066ac634b9b434250237eb3d5.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/julep-ai-inc-dash%2Fjulep-88cc6342d69fe97f2a853ea6603be32f004effeb54c78bdaeabada214bba8e5d.yml
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 1.39.0 (2024-11-20)

Full Changelog: [v1.38.0...v1.39.0](https://github.com/julep-ai/node-sdk/compare/v1.38.0...v1.39.0)

### Features

* **api:** api update ([#134](https://github.com/julep-ai/node-sdk/issues/134)) ([0b34041](https://github.com/julep-ai/node-sdk/commit/0b340411112cc23e68a0acc309fc3fa5c614524b))


### Chores

* rebuild project due to codegen change ([#130](https://github.com/julep-ai/node-sdk/issues/130)) ([6750ae5](https://github.com/julep-ai/node-sdk/commit/6750ae5f888b9f1ec04bf715c5c479828f36013e))
* remove redundant word in comment ([#133](https://github.com/julep-ai/node-sdk/issues/133)) ([11c1575](https://github.com/julep-ai/node-sdk/commit/11c15751e1393c0a58b58adaf9df851fc3dd16ce))


### Documentation

* remove suggestion to use `npm` call out ([#132](https://github.com/julep-ai/node-sdk/issues/132)) ([87101a1](https://github.com/julep-ai/node-sdk/commit/87101a1af69d2f64df2dcd2828bfbb825f362254))

## 1.38.0 (2024-11-16)

Full Changelog: [v1.37.0...v1.38.0](https://github.com/julep-ai/node-sdk/compare/v1.37.0...v1.38.0)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const client = new Julep({

async function main() {
const resourceCreated = await client.tasks.create('dad00000-0000-4000-a000-000000000000', {
main: [{ evaluate: { foo: ['string', 'string', 'string'] } }],
main: [{ evaluate: { foo: ['string'] } }],
name: 'name',
});

Expand Down Expand Up @@ -347,7 +347,7 @@ The following runtimes are supported:

- Web browsers (Up-to-date Chrome, Firefox, Safari, Edge, and more)
- Node.js 18 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions.
- Deno v1.28.0 or higher, using `import Julep from "npm:@julep/sdk"`.
- Deno v1.28.0 or higher.
- Bun 1.0 or later.
- Cloudflare Workers.
- Vercel Edge Runtime.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@julep/sdk",
"version": "1.38.0",
"version": "1.39.0",
"description": "The official TypeScript library for the Julep API",
"author": "Julep <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ npm exec tsc-multi
# copy over handwritten .js/.mjs/.d.ts files
cp src/_shims/*.{d.ts,js,mjs,md} dist/_shims
cp src/_shims/auto/*.{d.ts,js,mjs} dist/_shims/auto
# we need to add exports = module.exports = Julep Node to index.js;
# we need to add exports = module.exports = Julep to index.js;
# No way to get that from index.ts because it would cause compile errors
# when building .mjs
node scripts/utils/fix-index-exports.cjs
Expand Down
Loading