Skip to content

Commit 70d5d73

Browse files
Version Bump v7.1.0: WebProxy Support
1 parent 068447d commit 70d5d73

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
5+
## [7.1.0] - 2016-07-19
6+
### Added
7+
- Update [csharp-http-client](https://github.com/sendgrid/csharp-http-client) dependency to [support setting a WebProxy](https://github.com/sendgrid/csharp-http-client/releases/tag/v2.0.7)
8+
49
## [7.0.7] - 2016-07-18
10+
### Fixed
511
- Fix for [issue #256](https://github.com/sendgrid/sendgrid-csharp/issues/256): SendGrid v3 and HTML emails - Creates bad Json
612
- Updated dependency to SendGrid.Csharp.HTTP.Client to 2.0.6
713
- Updated dependency to JSON.NET to 9.0.1 in the Example and SendGrid projects

SendGrid/Example/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("7.0.7")]
39-
[assembly: AssemblyFileVersion("7.0.7")]
38+
[assembly: AssemblyVersion("7.1.0")]
39+
[assembly: AssemblyFileVersion("7.1.0")]

SendGrid/SendGrid/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("7.0.7")]
36-
[assembly: AssemblyFileVersion("7.0.7")]
35+
[assembly: AssemblyVersion("7.1.0")]
36+
[assembly: AssemblyFileVersion("7.1.0")]

SendGrid/SendGrid/SendGrid.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
4848
<Private>True</Private>
4949
</Reference>
50-
<Reference Include="SendGrid.CSharp.HTTP.Client, Version=2.0.6.0, Culture=neutral, PublicKeyToken=79219bf4e5ecaaca, processorArchitecture=MSIL">
51-
<HintPath>..\packages\SendGrid.CSharp.HTTP.Client.2.0.6\lib\SendGrid.CSharp.HTTP.Client.dll</HintPath>
50+
<Reference Include="SendGrid.CSharp.HTTP.Client, Version=2.0.7.0, Culture=neutral, PublicKeyToken=79219bf4e5ecaaca, processorArchitecture=MSIL">
51+
<HintPath>..\packages\SendGrid.CSharp.HTTP.Client.2.0.7\lib\SendGrid.CSharp.HTTP.Client.dll</HintPath>
5252
<Private>True</Private>
5353
</Reference>
5454
<Reference Include="System" />

SendGrid/SendGrid/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net45" />
44
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
5-
<package id="SendGrid.CSharp.HTTP.Client" version="2.0.6" targetFramework="net452" />
5+
<package id="SendGrid.CSharp.HTTP.Client" version="2.0.7" targetFramework="net452" />
66
</packages>

SendGrid/UnitTest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("7.0.7")]
36-
[assembly: AssemblyFileVersion("7.0.7")]
35+
[assembly: AssemblyVersion("7.1.0")]
36+
[assembly: AssemblyFileVersion("7.1.0")]

0 commit comments

Comments
 (0)