Skip to content

Commit

Permalink
release: 0.18.0 (#334)
Browse files Browse the repository at this point in the history
* feat(api): OpenAPI spec update via Stainless API (#333)

* feat(api): OpenAPI spec update via Stainless API (#335)

* chore(examples): minor formatting changes (#336)

* feat(api): OpenAPI spec update via Stainless API (#337)

* feat(api): OpenAPI spec update via Stainless API (#338)

* release: 0.18.0

---------

Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
  • Loading branch information
stainless-app[bot] authored Aug 13, 2024
1 parent 2dc57b9 commit e9f37e6
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.17.0"
".": "0.18.0"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.18.0 (2024-08-13)

Full Changelog: [v0.17.0...v0.18.0](https://github.com/val-town/sdk/compare/v0.17.0...v0.18.0)

### Features

* **api:** OpenAPI spec update via Stainless API ([#333](https://github.com/val-town/sdk/issues/333)) ([352109c](https://github.com/val-town/sdk/commit/352109c8958944b057b948c530fb71170841cb58))
* **api:** OpenAPI spec update via Stainless API ([#335](https://github.com/val-town/sdk/issues/335)) ([0c1c960](https://github.com/val-town/sdk/commit/0c1c9603c84135035c57e64511c3aa11976ea3c6))
* **api:** OpenAPI spec update via Stainless API ([#337](https://github.com/val-town/sdk/issues/337)) ([1bfc560](https://github.com/val-town/sdk/commit/1bfc560c30c661275c70ddf42be255c3a1c90f04))
* **api:** OpenAPI spec update via Stainless API ([#338](https://github.com/val-town/sdk/issues/338)) ([2627921](https://github.com/val-town/sdk/commit/2627921c06d9bc18bb628dd54b04219053406fa7))


### Chores

* **examples:** minor formatting changes ([#336](https://github.com/val-town/sdk/issues/336)) ([d0ab2e3](https://github.com/val-town/sdk/commit/d0ab2e3e4f21d05656ce9ac1dd17ecb0dd4b50fa))

## 0.17.0 (2024-08-12)

Full Changelog: [v0.16.0...v0.17.0](https://github.com/val-town/sdk/compare/v0.16.0...v0.17.0)
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": "@valtown/sdk",
"version": "0.17.0",
"version": "0.18.0",
"description": "The official TypeScript library for the Val Town API",
"author": "Val Town <support@val.town>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.17.0'; // x-release-please-version
export const VERSION = '0.18.0'; // x-release-please-version
14 changes: 7 additions & 7 deletions tests/api-resources/emails.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,31 @@ describe('resource emails', () => {
{
content: 'content',
filename: 'filename',
type: 'type',
disposition: 'disposition',
contentId: 'contentId',
disposition: 'disposition',
type: 'type',
},
{
content: 'content',
filename: 'filename',
type: 'type',
disposition: 'disposition',
contentId: 'contentId',
disposition: 'disposition',
type: 'type',
},
{
content: 'content',
filename: 'filename',
type: 'type',
disposition: 'disposition',
contentId: 'contentId',
disposition: 'disposition',
type: 'type',
},
],
bcc: 'string',
cc: 'string',
from: 'string',
headers: { foo: 'string' },
html: 'Hello <strong>world</strong>',
replyToList: { name: 'name', email: 'email' },
replyToList: { email: 'email', name: 'name' },
subject: 'An important message',
text: 'Hello world',
to: 'string',
Expand Down
2 changes: 1 addition & 1 deletion tests/api-resources/sqlite.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('resource sqlite', () => {
});

test('batch: required and optional params', async () => {
const response = await client.sqlite.batch({ statements: ['SELECT 1;'], mode: 'read' });
const response = await client.sqlite.batch({ statements: ['SELECT 1;'], mode: 'write' });
});

test('execute: only required params', async () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/api-resources/vals/vals.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('resource vals', () => {
name: 'myVal',
privacy: 'public',
readme: '# My Val',
type: 'script',
type: 'http',
});
});

Expand Down
2 changes: 1 addition & 1 deletion tests/api-resources/vals/versions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('resource versions', () => {
name: 'myVal',
privacy: 'public',
readme: '# My Val',
type: 'script',
type: 'http',
});
});

Expand Down

0 comments on commit e9f37e6

Please sign in to comment.