Skip to content

Commit

Permalink
Change default TS sdk to be 0.0.199 (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachkirsch authored Oct 2, 2022
1 parent 46ff8fb commit 6f44f01
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const JAVA_GENERATOR_INVOCATION: DraftGeneratorInvocationSchema = {

export const TYPESCRIPT_GENERATOR_INVOCATION: DraftGeneratorInvocationSchema = {
name: "fernapi/fern-typescript-sdk",
version: "0.0.198",
version: "0.0.199",
};

export const POSTMAN_GENERATOR_INVOCATION: DraftGeneratorInvocationSchema = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ errors:
- name: fernapi/java-client
version: 0.0.109
- name: fernapi/fern-typescript-sdk
version: 0.0.198
version: 0.0.199
- name: fernapi/fern-postman
version: 0.0.23
local-output: ./generated-postman.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ exports[`fern upgrade upgrades generators 1`] = `
- name: fernapi/java-client
version: 0.0.109
- name: fernapi/fern-typescript-sdk
version: 0.0.198
version: 0.0.199
"
`;
4 changes: 2 additions & 2 deletions packages/docs/docs/generators/generators.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ View an example using multiple generators [on Github](https://github.com/fern-ap
````yml title="/fern/api/generators.yml"
draft: # Publishes the generated code to a private registry managed by Fern.
- name: fernapi/fern-typescript-sdk
version: 0.0.198
version: 0.0.199
release: # Publishes the generated code to a public registry (e.g. maven, npm, pypi).
- name: fernapi/java-client
Expand All @@ -44,7 +44,7 @@ Generators in the `draft` list will publish to a private registry managed by Fer
```diff title="/fern/api/generators.yml"
draft:
+ - name: fernapi/fern-typescript-sdk
+ version: 0.0.198
+ version: 0.0.199
release: []
````
Expand Down

0 comments on commit 6f44f01

Please sign in to comment.