Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 2.24.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingenico ePayments committed Sep 5, 2018
1 parent 4dc306d commit 672733d
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion connect-sdk-dotnet-examples/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("2.23.0.*")]
[assembly: AssemblyVersion("2.24.0.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyName>connect-sdk-dotnet-examples</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<ReleaseVersion>2.23.0</ReleaseVersion>
<ReleaseVersion>2.24.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet-it/connect-sdk-dotnet-it.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyName>connect-sdk-dotnet-it</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<ReleaseVersion>2.23.0</ReleaseVersion>
<ReleaseVersion>2.24.0</ReleaseVersion>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet-tests/connect-sdk-dotnet-tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<ReleaseVersion>2.23.0</ReleaseVersion>
<ReleaseVersion>2.24.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,6 @@ Global
$31.IncludeStaticEntities = True
$0.VersionControlPolicy = $33
$33.inheritsSet = Mono
version = 2.23.0
version = 2.24.0
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ public class CardPayoutMethodSpecificInput : AbstractPayoutMethodSpecificInput
public Card Card { get; set; } = null;

public int? PaymentProductId { get; set; } = null;

public string Token { get; set; } = null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public class BankAccountBbanRefund : BankAccountBban
{
public string BankCity { get; set; } = null;

public string PatronymicName { get; set; } = null;

public string SwiftCode { get; set; } = null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ public class RefundCustomer
public CompanyInformation CompanyInformation { get; set; } = null;

public ContactDetailsBase ContactDetails { get; set; } = null;

public string FiscalNumber { get; set; } = null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ internal string PlatformIdentifier
}
}

const string SDK_VERSION = "2.23.0";
const string SDK_VERSION = "2.24.0";

const string SERVER_META_INFO_HEADER = "X-GCS-ServerMetaInfo";

Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("2.23.0.*")]
[assembly: AssemblyVersion("2.24.0.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet/connect-sdk-dotnet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RootNamespace>Ingenico.Connect.Sdk</RootNamespace>
<AssemblyName>connect-sdk-dotnet</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<ReleaseVersion>2.23.0</ReleaseVersion>
<ReleaseVersion>2.24.0</ReleaseVersion>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion connect-sdk-dotnet/connect-sdk-dotnet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>connect-sdk-dotnet</id>
<version>2.23.0</version>
<version>2.24.0</version>
<authors>Ingenico ePayments</authors>
<owners>Ingenico ePayments</owners>
<description>SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API</description>
Expand Down

0 comments on commit 672733d

Please sign in to comment.