Skip to content

Commit 30212d7

Browse files
authored
Merge pull request #862 from watson-developer-cloud/add-featured-projects-section
docs changes
2 parents dfe935d + a084e97 commit 30212d7

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Node.js client library to use the Watson APIs.
1111

1212
<details>
1313
<summary>Table of Contents</summary>
14-
1514
* [Before you begin](#before-you-begin)
1615
* [Installation](#installation)
1716
* [Usage](#usage)
@@ -42,11 +41,19 @@ Node.js client library to use the Watson APIs.
4241
* [Composing Services](#composing-services)
4342
* [Debug](#debug)
4443
* [Tests](#tests)
45-
* [License](#license)
4644
* [Contributing](#contributing)
45+
* [Featured Projects](#featured-projects)
46+
* [License](#license)
4747

4848
</details>
4949

50+
## ANNOUNCEMENTS!
51+
### New Major Version
52+
The new major version, `v4` has been released. The major new feature in this release is native support for Promises. There are some breaking changes - use the [migration guide](https://github.com/watson-developer-cloud/node-sdk/blob/master/UPGRADE-4.0.md) to navigate any changes that affect your code.
53+
54+
### Package Rename
55+
This package has been moved under the name `ibm-watson`. The package is still available at `watson-developer-cloud`, but that will no longer receive updates. Use `ibm-watson` to stay up to date.
56+
5057
## Before you begin
5158
* You need an [IBM Cloud][ibm-cloud-onboarding] account.
5259

@@ -831,15 +838,21 @@ $ jest '<path to test>'
831838
## Open source @ IBM
832839
[Find more open source projects on the IBM Github Page.](http://ibm.github.io/)
833840
834-
## License
841+
## Contributing
842+
See [CONTRIBUTING](https://github.com/watson-developer-cloud/node-sdk/blob/master/.github/CONTRIBUTING.md).
843+
844+
## Featured Projects
845+
We love to highlight cool open-source projects that use this SDK! If you'd like to get your project added to the list, feel free to make an issue linking us to it.
846+
- [Watson Speech to Text Demo App](https://github.com/watson-developer-cloud/speech-to-text-nodejs)
847+
- [Watson Assistant Demo App](https://github.com/watson-developer-cloud/assistant-demo)
848+
- [Virtual TJBot Node-RED Nodes](https://github.com/jeancarl/node-red-contrib-virtual-tjbot)
849+
- [CLI tool for Watson Assistant](https://github.com/Themandunord/IWAC)
850+
- [CLI tool for Watson Visual Recognition](https://github.com/boneskull/puddlenuts)
835851
852+
## License
836853
This library is licensed under Apache 2.0. Full license text is available in
837854
[COPYING][license].
838855
839-
## Contributing
840-
841-
See [CONTRIBUTING](https://github.com/watson-developer-cloud/node-sdk/blob/master/.github/CONTRIBUTING.md).
842-
843856
[assistant]: https://www.ibm.com/watson/services/conversation/
844857
[discovery]: https://www.ibm.com/watson/services/discovery/
845858
[personality_insights]: https://www.ibm.com/watson/services/personality-insights/

test/integration/compare_comply.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ describe('feedback', () => {
212212
};
213213
compare_comply.deleteFeedback(params, (err, res) => {
214214
expect(err).toBeNull();
215-
expect(res.status).toBe('200');
215+
expect(res.status).toBe(200);
216216
expect(res.message).toBeDefined();
217217
done();
218218
});

0 commit comments

Comments
 (0)