Skip to content

Commit 37e7adb

Browse files
authored
Merge pull request #414 from watson-developer-cloud/7996-february-2020-release
February 2020 release
2 parents 2439a50 + de1240d commit 37e7adb

File tree

100 files changed

+2295
-712
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2295
-712
lines changed

.bumpversion.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ commit = True
33
current_version = 4.2.1
44
message = docs: Update version numbers from {current_version} -> {new_version}
55

6+
[bumpversion:file:appveyor.yml]
7+
search = {current_version}
8+
replace = {new_version}
9+
610
[bumpversion:file:Doxyfile]
711
search = {current_version}
812
replace = {new_version}

.releaserc

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
{
2-
"debug": true,
32
"branch": "master",
4-
"verifyConditions": ["@semantic-release/git"],
5-
"prepare": [
6-
"@semantic-release/git",
7-
{
8-
"path": "@semantic-release/exec",
9-
"cmd": "bumpversion --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch"
10-
}
11-
],
12-
"publish": ["@semantic-release/github"]
3+
"debug": true,
4+
"plugins": [
5+
"@semantic-release/commit-analyzer",
6+
"@semantic-release/release-notes-generator",
7+
"@semantic-release/changelog",
8+
[
9+
"@semantic-release/exec",
10+
{
11+
"prepareCmd": "bumpversion --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch"
12+
}
13+
],
14+
[
15+
"@semantic-release/git",
16+
{
17+
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes}"
18+
}
19+
],
20+
"@semantic-release/github"
21+
]
1322
}

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ The .NET Standard SDK uses [Watson][wdc] services, a collection of REST APIs tha
1111
## Table of Contents
1212
* [Before you begin](#before-you-begin)
1313
* [Installing the Watson .NET Standard SDK](#installing-the-watson-net-standard-sdk)
14+
* [.NET Standard 2.0](#net-standard-20)
15+
* [Authtentication](#authentication)
16+
* [Custom Request Headers](#custom-request-headers)
17+
* [Response Headers, Status Code and Raw Json](#response-headers-status-code-and-raw-json)
18+
* [Self signed certificates](#self-signed-certificates)
19+
* [Discovery V2](#discovery-v2)
20+
* [Transaction IDs](#transactio-ids)
1421
* [Documentation](#documentation)
1522
* [Questions](#questions)
1623
* [Open Source @ IBM](#open-source--ibm)
@@ -21,7 +28,7 @@ The .NET Standard SDK uses [Watson][wdc] services, a collection of REST APIs tha
2128
Ensure you have the following prerequisites:
2229

2330
* You need an [IBM Cloud][ibm-cloud-onboarding] account.
24-
* Install [Visual Studio][visual-studio-download] for Windows or [Visual Studio Code][visual-studio-code-download] for OSX or Linux.
31+
* Install [Visual Studio][visual-studio-download] for Windows, OSX or Linux.
2532
* Install [.NET Core][dotnet-core-download].
2633

2734
## Installing the Watson .NET Standard SDK
@@ -41,6 +48,9 @@ This SDK provides classes and methods to access the following Watson services:
4148

4249
You can get the latest SDK packages through [NuGet](https://www.nuget.org) or manually [here][latest_release].
4350

51+
## .NET Standard 2.0
52+
The Watson .NET Standard SDK conforms to .NET Standard 2.0. It is implemented by .NET Core 2.0, .NET Framework 4.6.1 and Mono 5.4. See [Microsoft documentation](https://docs.microsoft.com/en-us/dotnet/standard/net-standard) for details.
53+
4454
## Authentication
4555
Watson services are migrating to token-based Identity and Access Management (IAM) authentication.
4656

@@ -277,6 +287,5 @@ We'd love to highlight cool open-source projects that use this SDK! If you'd lik
277287

278288
[dotnet-core-download]: https://www.microsoft.com/net/download/core
279289
[visual-studio-download]: https://www.visualstudio.com/vs/community/
280-
[visual-studio-code-download]: https://code.visualstudio.com/
281290
[dotnet-standard-sdk-documentation]: https://watson-developer-cloud.github.io/dotnet-standard-sdk/
282291
[ibm-cloud-onboarding]: http://cloud.ibm.com/registration?target=/developer/watson&cm_sp=WatsonPlatform-WatsonServices-_-OnPageNavLink-IBMWatson_SDKs-_-DotNet

0 commit comments

Comments
 (0)