Skip to content

Commit

Permalink
Fixed NuGet dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
smithrobs committed Mar 21, 2017
1 parent e83278b commit 6f6a3ed
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 28 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.2.1 (2017-03-21)

* Fixed NuGet dependencies; testing shows they are now being correctly included when performing `install-package`.

# 2.2.0 (2017-03-10)

* Promoted to release, no changes from rc2.
Expand All @@ -16,13 +20,13 @@

# 2.1.2 (2016-12-07)

* Look for ```appsettings.json``` (netcore webapp convention)
* Ensure XML config parser only looks for keyvalues inside ```<appSettings>``` and ```<connectionStrings>``` elements.
* Look for `appsettings.json` (netcore webapp convention)
* Ensure XML config parser only looks for keyvalues inside `<appSettings>` and `<connectionStrings>` elements.
* Gracefully ignore elements with key attribute but not value attribute.

# 2.1.1 (2016-12-06)

* Look for ```<executing process>.exe.config``` file for XML configuration.
* Look for `<executing process>.exe.config` file for XML configuration.

# 2.1.0 (2016-11-18)

Expand Down
59 changes: 36 additions & 23 deletions Nexmo.Api/Nexmo.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Nexmo.Csharp.Client</id>
<version>2.2.0</version>
<version>2.2.1</version>
<title>Nexmo API Client</title>
<authors>Nexmo</authors>
<owners>Nexmo</owners>
Expand All @@ -12,35 +12,48 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Official C#/.NET wrapper for the Nexmo API</description>
<releaseNotes>
* Expose internal API request methods to allow custom API calls from library consumers as some new Nexmo API endpoints may not be immediately supported.
* Allow override of request credentials per API call.
* Optional configuration and request logging.
* Support signed requests via security key.
* Optional API request rate limiting.
* Allow PKCS#8 formatted private keys; auth key parser logging.
* Fixed NuGet dependencies
</releaseNotes>
<copyright>© Nexmo 2017</copyright>
<tags>SMS voice telephony phone nexmo</tags>
<dependencies>
<group>
<dependency id="Microsoft.Extensions.Configuration" version="1.0.*" />
<dependency id="Microsoft.Extensions.Configuration.Abstractions" version="1.0.*" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="1.0.*" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="1.0.*" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="1.0.*" />
<dependency id="Microsoft.Extensions.Logging.Console" version="1.0.*" />
<dependency id="System.Net.Http" version="4.*" />
<dependency id="System.Runtime.Extensions" version="4.1.*" />

<dependency id="Newtonsoft.Json" version="9.0.*" />
<dependency id="jose-jwt" version="2.0.*" />
<!-- Default dependencies -->
<dependency id="Microsoft.Extensions.Configuration" version="1.0.2" />
<dependency id="Microsoft.Extensions.Configuration.Abstractions" version="1.0.2" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="1.0.2" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging.Console" version="1.0.2" />
<dependency id="System.Net.Http" version="4.0.0" />
<dependency id="System.Runtime.Extensions" version="4.1.0" />
<!-- non-MS -->
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="jose-jwt" version="2.0.1" />
</group>
<group targetFramework="netstandard1.6">
<dependency id="System.Diagnostics.Process" version="4.1.*" />
<dependency id="System.Security.Cryptography.Algorithms" version="4.2.*" />
<dependency id="System.Security.Cryptography.OpenSsl" version="4.0.*" />
<dependency id="System.Security.Cryptography.Cng" version="4.2.*" />
<dependency id="System.Xml.XDocument" version="4.0.*" />
<!-- (copied from above as NuGet doesn't cascade deps) -->
<!-- Default dependencies -->
<dependency id="Microsoft.Extensions.Configuration" version="1.0.2" />
<dependency id="Microsoft.Extensions.Configuration.Abstractions" version="1.0.2" />
<dependency id="Microsoft.Extensions.Configuration.Json" version="1.0.2" />
<dependency id="Microsoft.Extensions.DependencyInjection" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="1.0.2" />
<dependency id="Microsoft.Extensions.Logging.Console" version="1.0.2" />
<dependency id="System.Net.Http" version="4.0.0" />
<dependency id="System.Runtime.Extensions" version="4.1.0" />
<!-- non-MS -->
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="jose-jwt" version="2.0.1" />

<!-- Additional .NET Standard dependencies -->
<dependency id="System.Diagnostics.Process" version="4.1.0" />
<dependency id="System.Security.Cryptography.Algorithms" version="4.2.0" />
<dependency id="System.Security.Cryptography.OpenSsl" version="4.0.0" />
<dependency id="System.Security.Cryptography.Cng" version="4.2.0" />
<dependency id="System.Xml.XDocument" version="4.0.11" />
</group>
</dependencies>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions Nexmo.Api/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,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("2.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.1.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]

0 comments on commit 6f6a3ed

Please sign in to comment.