Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit d5600e0

Browse files
authored
Merge pull request #18 from CallFire/develop
CI-24629 updated .NET framework target version to latest for support …
2 parents b9a2fce + 195db22 commit d5600e0

File tree

8 files changed

+14
-10
lines changed

8 files changed

+14
-10
lines changed

Changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
EzTexting API client Changelog
22
=============================
3+
Version 1.1.2 - July 31 2018
4+
- updated .NET framework target version to latest for support TLS 1.2 by default
5+
36
Version 1.1.1 - July 05 2018
47
- added script for automatic release uploading to github
58

EzTextingApiClient.nuspec

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?><package>
22
<metadata>
33
<id>EzTextingApiClient</id>
4-
<version>1.1.1</version>
4+
<version>1.1.2</version>
55
<title>EzTexting REST API client</title>
66
<authors>
77
Vladimir Mikhailov
@@ -14,9 +14,12 @@
1414
<description>C# client library for integration with EzTexting REST API services</description>
1515
<releaseNotes>EzTexting API client Changelog
1616
=============================
17+
Version 1.1.2 - July 31 2018
18+
- updated .NET framework target version to latest for support TLS 1.2 by default
19+
1720
Version 1.1.1 - July 05 2018
18-
- added script for automatic release uploading to github
19-
21+
- added script for automatic release uploading to github
22+
2023
Version 1.1.0 - May 23 2018
2124
- added file upload to create media file API
2225

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.gradle.internal.os.OperatingSystem
22
import groovy.xml.XmlUtil
33

44
plugins {
5-
id 'com.ullink.msbuild' version '2.14'
5+
id 'com.ullink.msbuild' version '2.21'
66
id 'com.ullink.nuget' version '2.12'
77
id 'com.ullink.nunit' version '1.4'
88
id 'com.ullink.opencover' version '1.2'

src/EzTextingApiClient.Tests/ClientUtilsTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using NUnit.Framework;
77
using RestSharp.Extensions;
88
using System.Collections.Generic;
9-
using EzTextingApiClient.Api.Toolbox.Model;
109
using SortProperty = EzTextingApiClient.Api.Groups.Model.SortProperty;
1110

1211
namespace EzTextingApiClient.Tests

src/EzTextingApiClient.Tests/EzTextingApiClient.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<OutputType>Library</OutputType>
88
<RootNamespace>EzTextingApiClient.Tests</RootNamespace>
99
<AssemblyName>EzTextingApiClient.Tests</AssemblyName>
10-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
10+
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1111
<ReleaseVersion>1.0.0</ReleaseVersion>
1212
</PropertyGroup>
1313
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

src/EzTextingApiClient/EzTextingApiClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<OutputType>Library</OutputType>
88
<RootNamespace>EzTextingApiClient</RootNamespace>
99
<AssemblyName>EzTextingApiClient</AssemblyName>
10-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
10+
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1111
<ReleaseVersion>1.0.0</ReleaseVersion>
1212
</PropertyGroup>
1313
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -131,4 +131,4 @@
131131
<Folder Include="Api\Media\" />
132132
<Folder Include="Api\Toolbox\" />
133133
</ItemGroup>
134-
</Project>
134+
</Project>

src/EzTextingApiClient/EzTextingClient.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using EzTextingApiClient.Api.Messaging;
99
using EzTextingApiClient.Api.Toolbox;
1010
using EzTextingApiClient.Auth;
11-
using RestSharp.Authenticators;
1211

1312
namespace EzTextingApiClient
1413
{

src/EzTextingApiClient/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1414
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1515

16-
[assembly: AssemblyVersion("1.1.1.*")]
16+
[assembly: AssemblyVersion("1.1.2.*")]
1717

1818
// The following attributes are used to specify the signing key for the assembly,
1919
// if desired. See the Mono documentation for more information about signing.

0 commit comments

Comments
 (0)