Skip to content

Commit

Permalink
Prep for 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smithrobs committed Nov 9, 2017
1 parent f3390a5 commit 5a2c3c9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 2.3.0 (2017-11-09)

* __[BREAKING]__ `Account.GetBalance` returns (instead of a `decimal`) a `Balance` object that includes your account balance and other properties.
* __[BREAKING]__ `NumberInsight` calls, request classes, and response classes have changed slightly. The underlying calls to Nexmo's API have been updated as well.
* API and documentation refresh: Added missing JSON properties, updated summaries from the official docs.
* Support additional call endpoint types.
* Introduced `Nexmo.Api.EnsureSuccessStatusCode` configuration option. You may instruct the library to throw an exception if a request results in an unsuccessful HTTP status code.
* Address `ShortCode.RequestAlert` request bug.
* Expose the configuration `ILoggerFactory` for use with external logging implementations.

# 2.2.2 (2017-06-19)

* Updated jose-jwt to 2.3.0 which is reported to address key loading issues.
Expand Down
10 changes: 8 additions & 2 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.2</version>
<version>2.3.0</version>
<title>Nexmo API Client</title>
<authors>Nexmo</authors>
<owners>Nexmo</owners>
Expand All @@ -12,7 +12,13 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Official C#/.NET wrapper for the Nexmo API</description>
<releaseNotes>
* Updated jose-jwt to 2.3.0 which is reported to address key loading issues.
* [BREAKING] `Account.GetBalance` returns (instead of a `decimal`) a `Balance` object that includes your account balance and other properties.
* [BREAKING] `NumberInsight` calls, request classes, and response classes have changed slightly. The underlying calls to Nexmo's API have been updated as well.
* API and documentation refresh: Added missing JSON properties, updated summaries from the official docs.
* Support additional call endpoint types.
* Introduced `Nexmo.Api.EnsureSuccessStatusCode` configuration option. You may instruct the library to throw an exception if a request results in an unsuccessful HTTP status code.
* Address `ShortCode.RequestAlert` request bug.
* Expose the configuration `ILoggerFactory` for use with external logging implementations.
</releaseNotes>
<copyright>© Nexmo 2017</copyright>
<tags>SMS voice telephony phone nexmo</tags>
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.2.0")]
[assembly: AssemblyFileVersion("2.2.2.0")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyFileVersion("2.3.0.0")]

0 comments on commit 5a2c3c9

Please sign in to comment.