Skip to content
Open
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
6 changes: 3 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"cliVersion": "5.51.2",
"cliVersion": "5.57.0",
"generatorName": "fernapi/fern-csharp-sdk",
"generatorVersion": "2.58.0",
"generatorConfig": {
Expand All @@ -12,10 +12,10 @@
"simplify-object-dictionaries": true,
"use-discriminated-unions": false
},
"originGitCommit": "5a015aa01196915bea6110904c69d5804f457ff5",
"originGitCommit": "3d93d4fc8caa9510f475e635ff13806d5aca2c0e",
"originGitCommitIsDirty": true,
"invokedBy": "ci",
"requestedVersion": "AUTO",
"ciProvider": "unknown",
"sdkVersion": "2.0.0"
"sdkVersion": "2.0.1"
}
10 changes: 10 additions & 0 deletions .fern/replay.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
.gitignore
README.md
changelog.md
.fern/replay.lock
.fern/replay.yml
.gitattributes
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.fern/replay.lock linguist-generated=true
146 changes: 0 additions & 146 deletions .github/workflows/sdk-release-pr-notification.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/Vapi.Net/Core/Public/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ namespace Vapi.Net;
[Serializable]
internal class Version
{
public const string Current = "2.0.0";
public const string Current = "2.0.1";
}
2 changes: 1 addition & 1 deletion src/Vapi.Net/Vapi.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
2 changes: 1 addition & 1 deletion src/Vapi.Net/VapiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public VapiClient(string? token = null, ClientOptions? clientOptions = null)
{ "X-Fern-Language", "C#" },
{ "X-Fern-SDK-Name", "Vapi.Net" },
{ "X-Fern-SDK-Version", Version.Current },
{ "User-Agent", "Vapi.Net/2.0.0" },
{ "User-Agent", "Vapi.Net/2.0.1" },
}
);
foreach (var header in platformHeaders)
Expand Down