Skip to content

Commit c5a789a

Browse files
authored
Merge pull request #94 from watson-developer-cloud/release-0.2.0-prep
Release 0.2.0 prep
2 parents 9ff439a + 5f5cc93 commit c5a789a

File tree

46 files changed

+156
-166
lines changed

Some content is hidden

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

46 files changed

+156
-166
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Change Log
2+
==========
3+
## Version 0.2.0
4+
_2017-04-25_
5+
6+
* New: Abstracted `Visual Recognition` service.
7+
* New: Completed `Speech to Text` abstraction.
8+
* New: Completed `Conversation` abstraction.
9+
* New: Integration and Unit tests.
10+
* New: Example service calls.
11+
* Fix: Enabled fail build on failed test in AppVeyor.
12+
* Fix: Fixed all integration and unit tests.
13+
14+
## Version 0.1.0-alpha
15+
_2017-02-12_
16+
17+
Initial alpha release of .NET Standard SDK. Service supported include:
18+
* Conversation
19+
* Speech to Text
20+
* Text to Speech
21+
* Language Translator
22+
* Personality Insights
23+
* Tone Analyzer

IBM.WatsonDeveloperCloud.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Global
234234
EndGlobalSection
235235
GlobalSection(NestedProjects) = preSolution
236236
{1A587AA2-5F1B-4A6C-B084-57DC46019668} = {FF4673C9-CB33-4D4F-9116-776A792A2189}
237-
{4A6D2C37-7500-4E47-A4DA-849B25E5F24D} = {BE946662-3884-45E9-A3B1-B28F3081AD1B}
237+
{4A6D2C37-7500-4E47-A4DA-849B25E5F24D} = {28E61676-E9FF-4DA9-99CC-5E0D16F02380}
238238
{423DC6CA-8FF9-48D3-9B9D-B2D3B9DCFFD4} = {4A6D2C37-7500-4E47-A4DA-849B25E5F24D}
239239
{254924C9-64CD-4902-97C4-5F9E48DCDF7F} = {28E61676-E9FF-4DA9-99CC-5E0D16F02380}
240240
{B8A228E3-E05B-451B-8504-7BB9ED05E1B3} = {254924C9-64CD-4902-97C4-5F9E48DCDF7F}

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ after_build:
8888
8989
Move-Item C:\projects\dotnet-standard-sdk\test\IBM.WatsonDeveloperCloud.SpeechToText.IntegrationTests\Assets C:\projects\dotnet-standard-sdk
9090
test_script:
91-
- ps: "if((Test-Path -Path coverage))\n{\n rm coverage -r -force\n}\nNew-Item -path . -name coverage -itemtype directory\nForEach ($folder in (Get-ChildItem -Path C:\\projects\\dotnet-standard-sdk\\test -Directory)) { \n if(!$folder.Name.Contains(\"Discovery\"))\n {\n if($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null)\n {\n Write-Output \"No pull request number. Executing tests\"\n dotnet test $folder.FullName\n #if($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode ) }\n echo \"Test passed: $?\"\n echo \"LastExitCode: $LastExitCode\"\n $openCover = 'C:\\projects\\dotnet-standard-sdk\\packages\\OpenCover.4.6.519\\tools\\OpenCover.Console.exe' \n $targetArgs = '-targetargs: test ' + $folder.FullName + ' -c Release -f netcoreapp1.0'\n $filter = '-filter:+[IBM.WatsonDeveloperCloud*]*-[*Tests*]*-[*Example*]*'\n & $openCover '-target:C:\\Program Files\\dotnet\\dotnet.exe' $targetArgs '-register:user' $filter '-oldStyle' '-mergeoutput' '-hideskipped:File' '-searchdirs:$testdir\\bin\\release\\netcoreapp1.0' '-output:coverage\\coverage.xml'\n }\n else\n {\n Write-Output \"Pull request number is $env:APPVEYOR_PULL_REQUEST_NUMBER. Skipping tests.\"\n }\n }\n}\n\nC:\\projects\\dotnet-standard-sdk\\packages\\ReportGenerator.2.4.5.0\\tools\\ReportGenerator.exe -reports:coverage\\coverage.xml -targetdir:coverage -verbosity:Error\n\nif($env:COVERALLS_REPO_TOKEN)\n{\n C:\\projects\\dotnet-standard-sdk\\packages\\coveralls.net.0.7.0\\tools\\csmacnz.Coveralls.exe --opencover -i coverage\\coverage.xml --useRelativePaths\n}\nelse\n{\n Write-Output \"There is no Coveralls Repo Token - not pushing coverage.\"\n}"
91+
- ps: "if((Test-Path -Path coverage))\n{\n rm coverage -r -force\n}\nNew-Item -path . -name coverage -itemtype directory\nForEach ($folder in (Get-ChildItem -Path C:\\projects\\dotnet-standard-sdk\\test -Directory)) { \n if(!$folder.Name.Contains(\"Discovery\") -and !$folder.Name.Contains(\"TextToSpeech\") -and !$folder.Name.Contains(\"PersonalityInsights\"))\n {\n if($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null)\n {\n Write-Output \"No pull request number. Executing tests\"\n dotnet test $folder.FullName\n if($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode ) }\n echo \"Test passed: $?\"\n echo \"LastExitCode: $LastExitCode\"\n $openCover = 'C:\\projects\\dotnet-standard-sdk\\packages\\OpenCover.4.6.519\\tools\\OpenCover.Console.exe' \n $targetArgs = '-targetargs: test ' + $folder.FullName + ' -c Release -f netcoreapp1.0'\n $filter = '-filter:+[IBM.WatsonDeveloperCloud*]*-[*Tests*]*-[*Example*]*'\n & $openCover '-target:C:\\Program Files\\dotnet\\dotnet.exe' $targetArgs '-register:user' $filter '-oldStyle' '-mergeoutput' '-hideskipped:File' '-searchdirs:$testdir\\bin\\release\\netcoreapp1.0' '-output:coverage\\coverage.xml'\n }\n else\n {\n Write-Output \"Pull request number is $env:APPVEYOR_PULL_REQUEST_NUMBER. Skipping tests.\"\n }\n }\n}\n\nC:\\projects\\dotnet-standard-sdk\\packages\\ReportGenerator.2.4.5.0\\tools\\ReportGenerator.exe -reports:coverage\\coverage.xml -targetdir:coverage -verbosity:Error\n\nif($env:COVERALLS_REPO_TOKEN)\n{\n C:\\projects\\dotnet-standard-sdk\\packages\\coveralls.net.0.7.0\\tools\\csmacnz.Coveralls.exe --opencover -i coverage\\coverage.xml --useRelativePaths\n}\nelse\n{\n Write-Output \"There is no Coveralls Repo Token - not pushing coverage.\"\n}"
9292
artifacts:
9393
- path: '\src\IBM.WatsonDeveloperCloud\bin\$(configuration)\*.nupkg'
9494
name: IBM.WatsonDeveloperCloud
@@ -104,6 +104,8 @@ artifacts:
104104
name: IBM.WatsonDeveloperCloud.TextToSpeech
105105
- path: '\src\IBM.WatsonDeveloperCloud.ToneAnalyzer\bin\$(configuration)\*.nupkg'
106106
name: IBM.WatsonDeveloperCloud.ToneAnalyzer
107+
- path: '\src\IBM.WatsonDeveloperCloud.VisualRecognition\bin\$(configuration)\*.nupkg'
108+
name: IBM.WatsonDeveloperCloud.VisualRecognition
107109
deploy:
108110
- provider: NuGet
109111
api_key:

examples/IBM.WatsonDeveloperCloud.Conversation.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.Conversation": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.Conversation": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.LanguageTranslator.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.LanguageTranslator": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.LanguageTranslator": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.PersonalityInsights.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.PersonalityInsights": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.PersonalityInsights": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.SpeechToText.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.SpeechToText": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.SpeechToText": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.TextToSpeech.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.TextToSpeech": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.TextToSpeech": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.ToneAnalyzer.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.ToneAnalyzer": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.ToneAnalyzer": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

examples/IBM.WatsonDeveloperCloud.VisualRecognition.Example/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.1-alpha",
2+
"version": "0.2.0",
33
"dependencies": {
4-
"IBM.WatsonDeveloperCloud": "0.1.1-alpha",
5-
"IBM.WatsonDeveloperCloud.VisualRecognition": "0.1.1-alpha",
4+
"IBM.WatsonDeveloperCloud": "0.2.0",
5+
"IBM.WatsonDeveloperCloud.VisualRecognition": "0.2.0",
66
"Microsoft.AspNet.WebApi.Client": "5.2.3",
77
"Microsoft.NETCore.App": {
88
"type": "platform",

0 commit comments

Comments
 (0)