Skip to content

Commit

Permalink
Preparing for v0.8 release. (#197)
Browse files Browse the repository at this point in the history
- small fixes to JSDOC, property names diverging from doc name, or missing argument.

[ci skip]
  • Loading branch information
aricart authored Feb 28, 2018
1 parent 70baab2 commit f07baa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/nats.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var net = require('net'),
/**
* Constants
*/
var VERSION = '0.7.29',
var VERSION = '0.8',

DEFAULT_PORT = 4222,
DEFAULT_PRE = 'nats://localhost:',
Expand Down Expand Up @@ -1102,7 +1102,7 @@ Client.prototype.flush = function(opt_callback) {
* Publish a message to the given subject, with optional reply and callback.
*
* @param {String} subject
* @param {String} [opt_msg]
* @param {String} [msg]
* @param {String} [opt_reply]
* @param {Function} [opt_callback]
* @api public
Expand Down Expand Up @@ -1278,6 +1278,7 @@ Client.prototype.unsubscribe = function(sid, opt_max) {
* @param {Mixed} sid
* @param {Number} timeout
* @param {Number} expected
* @param {Function} callback
* @api public
*/
Client.prototype.timeout = function(sid, timeout, expected, callback) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nats",
"version": "0.7.29",
"version": "0.8",
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
Expand Down

0 comments on commit f07baa5

Please sign in to comment.