Skip to content

Commit d8a56b9

Browse files
authored
Update with latest generation (#79)
1 parent 5592513 commit d8a56b9

7 files changed

Lines changed: 21 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="5.3.1"></a>
13+
14+
### Changed
15+
16+
- Resolves a discrepancy during package publishing
17+
1218
<a name="5.3.0"></a>
1319

1420
## [5.3.0] - 2025-10-21

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
55
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

77
- API version: 1.0.0
8-
- SDK version: 5.3.0
8+
- SDK version: 5.3.1
99
- Generator version: 7.9.0
1010
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
1111
For more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/)

api/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6525,6 +6525,7 @@ components:
65256525
type: boolean
65266526
required:
65276527
- text
6528+
type: object
65286529
description: The `Say` command provides Text-To-Speech (TTS) support. It converts
65296530
text to speech and then renders it in a female voice back to the caller. `Say`
65306531
is useful in cases where it's difficult to pre-record a prompt for any reason.

freeclimb.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "freeclimb", "src\freeclimb\freeclimb.csproj", "{3C0B655F-1836-46E6-9B2B-D21201060C3C}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "freeclimb", "src\freeclimb\freeclimb.csproj", "{F1A65C9B-6999-40AF-80E1-7EB2A02998F2}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "freeclimb.Test", "src\freeclimb.Test\freeclimb.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{3C0B655F-1836-46E6-9B2B-D21201060C3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{3C0B655F-1836-46E6-9B2B-D21201060C3C}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{3C0B655F-1836-46E6-9B2B-D21201060C3C}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{3C0B655F-1836-46E6-9B2B-D21201060C3C}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{F1A65C9B-6999-40AF-80E1-7EB2A02998F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{F1A65C9B-6999-40AF-80E1-7EB2A02998F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{F1A65C9B-6999-40AF-80E1-7EB2A02998F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{F1A65C9B-6999-40AF-80E1-7EB2A02998F2}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

src/freeclimb.Test/TestHelpers.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,10 @@ public static object getTestValue(Type type)
352352
}
353353
if (type == typeof(TTSEngine))
354354
{
355-
return new TTSEngine(name: TTSEngineNameValueConverter.FromString("freeclimb.standard"), parameters: new Dictionary<string, Object>());
355+
return new TTSEngine(
356+
name: TTSEngineNameValueConverter.FromString("freeclimb.standard"),
357+
parameters: new Dictionary<string, Object>()
358+
);
356359
}
357360
if (type == typeof(TTSEngineName))
358361
{

src/freeclimb/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Configuration : IReadableConfiguration
3434
/// Version of the package.
3535
/// </summary>
3636
/// <value>Version of the package.</value>
37-
public const string Version = "5.3.0";
37+
public const string Version = "5.3.1";
3838

3939
/// <summary>
4040
/// Identifier for ISO 8601 DateTime Format
@@ -130,7 +130,7 @@ private IReadOnlyDictionary<
130130
public Configuration()
131131
{
132132
Proxy = null;
133-
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/5.3.0/csharp");
133+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/5.3.1/csharp");
134134
BasePath = "https://www.freeclimb.com/apiserver";
135135
DefaultHeaders = new ConcurrentDictionary<string, string>();
136136
ApiKey = new ConcurrentDictionary<string, string>();
@@ -582,7 +582,7 @@ public static string ToDebugReport()
582582
report += " OS: " + System.Environment.OSVersion + "\n";
583583
report += " .NET Framework Version: " + System.Environment.Version + "\n";
584584
report += " Version of the API: 1.0.0\n";
585-
report += " SDK Package Version: 5.3.0\n";
585+
report += " SDK Package Version: 5.3.1\n";
586586

587587
return report;
588588
}

src/freeclimb/freeclimb.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>A library generated from a OpenAPI doc</Description>
1313
<Copyright>No Copyright</Copyright>
1414
<RootNamespace>freeclimb</RootNamespace>
15-
<Version>5.3.0</Version>
15+
<Version>5.3.1</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\freeclimb.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/freeclimbapi/csharp-sdk.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)