Skip to content

Commit

Permalink
2.1.0 version bump and doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
smithrobs committed Nov 18, 2016
1 parent 0baa1e4 commit 7428b60
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 2.1.0 (???)
# 2.1.0 (2016-11-18)

* User-Agent reporting. You may also append an application-specific ID via settings.json.
* __[BREAKING]__ Support web.config XML. This has changed the settings.json structure slightly. Please check the README for details.

# 2.0.0 (2016-10-24)
Expand Down
3 changes: 2 additions & 1 deletion Nexmo.Api/Nexmo.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Official C#/.NET wrapper for the Nexmo API</description>
<releaseNotes>
* [FIXED] Moved configuration from app.config to settings.json
* User-Agent reporting. You may also append an application-specific ID via settings.json.
* [BREAKING] Support web.config XML. This has changed the settings.json structure slightly.
</releaseNotes>
<copyright>© Nexmo 2016</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.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ public ActionResult Get([FromUri]SMS.SMSDeliveryReceipt response)
}
```

__NOTE:__ ```[FromUri]``` is deprecated in .NET Core; ```[FromQuery]``` works in this case.

### Initiating a Call

Use [Nexmo's Call API][doc_voice] to initiate a voice call.
Expand Down Expand Up @@ -127,7 +129,7 @@ Call.Do(new Call.CallCommand
### Additional Examples

* Check out the sample MVC application and tests for more examples.
Make sure to copy web.config.example to web.config and enter your key/secret.
Make sure to copy settings.json.example/web.config.example to settings.json/web.config and enter your key/secret.

API Coverage
------------
Expand Down

0 comments on commit 7428b60

Please sign in to comment.