Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 2 additions & 0 deletions .github/workflows/update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: curl -s "https://registry.hub.docker.com/v2/repositories/fernapi/fern-ruby-sdk/tags" | jq -r -j '[.results[] | select(.name != "latest")] | .[0].name' > fern/snippets/version-number-ruby.mdx
- name: update-ts-version
run: curl -s "https://registry.hub.docker.com/v2/repositories/fernapi/fern-typescript-sdk/tags" | jq -r -j '[.results[] | select(.name != "latest")] | .[0].name' > fern/snippets/version-number-ts.mdx
- name: update-swift-version
run: curl -s "https://registry.hub.docker.com/v2/repositories/fernapi/fern-swift-sdk/tags" | jq -r -j '[.results[] | select(.name != "latest")] | .[0].name' > fern/snippets/version-number-swift.mdx
- name: create PR
id: cpr
uses: peter-evans/create-pull-request@v7
Expand Down
2 changes: 1 addition & 1 deletion fern/products/api-def/ferndef-pages/audiences.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Audiences in Fern Definition
subtitle: Use audiences in your Fern Definition to segment your API for different groups of consumers.
---

Audiences are a useful tool for segmenting your API for different consumers. You can configure your Fern Docs to publish documentation specific to an `Audience`. You can use [audiences in your OpenAPI Specification](/learn/api-definition/openapi/audiences), too.
Audiences are a useful tool for segmenting your API for different consumers. You can configure your Fern Docs to publish documentation specific to an `Audience`. You can use [audiences in your OpenAPI Specification](/learn/api-definitions/openapi/extensions/audiences), too.

Common examples of audiences include:

Expand Down
2 changes: 1 addition & 1 deletion fern/products/docs/pages/customization/user-feedback.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ By default, every Markdown page of your docs contains a feedback component at th

The feedback can be sent to you in real-time via the method of your choosing (e.g. Slack, email).

To disable this feature on a page, set `hide-feedback: true` in the frontmatter of that page. You can read more about the frontmatter configuration [here](/learn/docs/content/frontmatter#on-page-feedback).
To disable this feature on a page, set `hide-feedback: true` in the frontmatter of that page. You can read more about the frontmatter configuration [here](/learn/docs/configuration/page-level-settings#on-page-feedback).

## Edit this page
Allow users to open directly to the current page in your GitHub repository and suggest changes.
Expand Down
7 changes: 6 additions & 1 deletion fern/products/sdks/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,17 @@ description: Generate idiomatic SDKs in multiple programming languages
<div class="flex items-start flex-col space-y-3">
<img class="mx-auto dark:hidden" alt="Request Swift" src="./images/swift-card.png" />
<img class="mx-auto hidden dark:block" alt="Request Swift" src="./images/swift-card-dark.png" />
<div class="w-full space-y-1 overflow-hidden">
<div class="w-full space-y-1 overflow-hidden flex justify-between items-center">
<div class="text-(color:--grayscale-a12) text-body text-base font-semibold card-title">
Swift
<img src="./images/arrow-right-black.svg" alt="Arrow right light" className="arrow-right dark:hidden m-0" noZoom />
<img src="./images/arrow-right-white.svg" alt="Arrow right light" className="arrow-right hidden dark:block m-0" noZoom />
</div>
<div class="flex items-center gap-2">
<div class="text-(color:--grayscale-a12) text-body text-base font-light">
v<Markdown src="/snippets/version-number-swift.mdx"/>
</div>
</div>
</div>
</div>
</a>
Expand Down
1 change: 1 addition & 0 deletions fern/snippets/version-number-swift.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.7.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is intentionally 1 version behind current so that I can validate that the CI for updating versions works once this is merged to main.