Skip to content

Commit ea26a16

Browse files
SDK regeneration
1 parent 91ddd3d commit ea26a16

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
test:
2020
runs-on: ubuntu-latest
21-
continue-on-error: true
21+
2222
steps:
2323
- name: Checkout repo
2424
uses: actions/checkout@v4
@@ -30,7 +30,7 @@ jobs:
3030
run: yarn && yarn test
3131

3232
publish:
33-
needs: [ compile ]
33+
needs: [ compile, test ]
3434
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
3535
runs-on: ubuntu-latest
3636
steps:
@@ -54,4 +54,4 @@ jobs:
5454
npm publish --access public
5555
fi
5656
env:
57-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
57+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "truefoundry-sdk",
3-
"version": "0.0.0",
3+
"version": "0.1.11-rc.3",
44
"private": false,
55
"repository": "github:truefoundry/truefoundry-typescript-sdk",
66
"type": "commonjs",

src/Client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export class TrueFoundryClient {
9292
{
9393
"X-Fern-Language": "JavaScript",
9494
"X-Fern-SDK-Name": "truefoundry-sdk",
95-
"X-Fern-SDK-Version": "0.0.0",
96-
"User-Agent": "truefoundry-sdk/0.0.0",
95+
"X-Fern-SDK-Version": "0.1.11-rc.3",
96+
"User-Agent": "truefoundry-sdk/0.1.11-rc.3",
9797
"X-Fern-Runtime": core.RUNTIME.type,
9898
"X-Fern-Runtime-Version": core.RUNTIME.version,
9999
},

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = "0.0.0";
1+
export const SDK_VERSION = "0.1.11-rc.3";

0 commit comments

Comments
 (0)