Skip to content

Commit

Permalink
BTA-11168 Release SDK to Nuget Repository (#8)
Browse files Browse the repository at this point in the history
* BTA-11168 add a workflow that deploys the SDK to nuget repository

* BTA-11168 test the release

* BTA-11168 remove the test branch
  • Loading branch information
CodeBuild committed Feb 22, 2024
1 parent 8e92d75 commit 06df0b7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For more information, please visit:
This .NET SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0
- SDK version: 1.34.1
- SDK version: 1.34.2
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen

<a name="frameworks-supported"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/PayoutMethodDetailsEGPBank.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Name | Type | Description | Notes
**MiddleName** | **string** | | [optional]
**LastName** | **string** | |
**Street** | **string** | |
**PhoneNumber** | **string** | |
**PhoneNumber** | **string** | | [optional]
**BankAccount** | **string** | |
**BankCode** | **string** | |
**TransferReason** | [**PayoutMethodTransferReasonEnum**](PayoutMethodTransferReasonEnum.md) | |
Expand Down
8 changes: 4 additions & 4 deletions src/TransferZero.Sdk/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "1.34.1";
public const string Version = "1.34.2";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -126,7 +126,7 @@ static Configuration()
/// </summary>
public Configuration()
{
UserAgent = "TransferZero-SDK/.NET/1.34.1";
UserAgent = "TransferZero-SDK/.NET/1.34.2";
BasePath = "https://api-sandbox.transferzero.com/v1";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = "KEY";
Expand Down Expand Up @@ -183,7 +183,7 @@ public Configuration(
string tempFolderPath = null,
string dateTimeFormat = null,
int timeout = 100000,
string userAgent = "TransferZero-SDK/.NET/1.34.1"
string userAgent = "TransferZero-SDK/.NET/1.34.2"
// ReSharper restore UnusedParameter.Local
)
{
Expand Down Expand Up @@ -390,7 +390,7 @@ public static String ToDebugReport()
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
report += " Version of the API: 1.0\n";
report += " SDK Package Version: 1.34.1\n";
report += " SDK Package Version: 1.34.2\n";

return report;
}
Expand Down
4 changes: 2 additions & 2 deletions src/TransferZero.Sdk/Model/PayoutMethodDetailsEGPBank.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected PayoutMethodDetailsEGPBank() { }
/// <param name="middleName">middleName.</param>
/// <param name="lastName">lastName (required).</param>
/// <param name="street">street (required).</param>
/// <param name="phoneNumber">phoneNumber (required).</param>
/// <param name="phoneNumber">phoneNumber.</param>
/// <param name="bankAccount">bankAccount (required).</param>
/// <param name="bankCode">bankCode (required).</param>
/// <param name="transferReason">transferReason (required).</param>
Expand All @@ -51,11 +51,11 @@ protected PayoutMethodDetailsEGPBank() { }
this.FirstName = firstName;
this.LastName = lastName;
this.Street = street;
this.PhoneNumber = phoneNumber;
this.BankAccount = bankAccount;
this.BankCode = bankCode;
this.TransferReason = transferReason;
this.MiddleName = middleName;
this.PhoneNumber = phoneNumber;
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/TransferZero.Sdk/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.34.1")]
[assembly: AssemblyFileVersion("1.34.1")]
[assembly: AssemblyVersion("1.34.2")]
[assembly: AssemblyFileVersion("1.34.2")]
2 changes: 1 addition & 1 deletion src/TransferZero.Sdk/TransferZero.Sdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>TransferZero .NET SDK</title>

<!-- The package version number that is used when resolving dependencies -->
<version>1.34.1</version>
<version>1.34.2</version>

<!-- Authors contain text that appears directly on the gallery -->
<authors>TransferZero</authors>
Expand Down

0 comments on commit 06df0b7

Please sign in to comment.