qrusty-client 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -23,7 +23,7 @@ class QrustyClient {
23
23
  }
24
24
 
25
25
  /**
26
- * Create or configure a queue
26
+ * Create a new queue. Throws an error if the queue already exists.
27
27
  * @param {string} name
28
28
  * @param {string} [ordering="MaxFirst"] - One of: Fifo | MinFirst | MaxFirst
29
29
  * @param {boolean} [allowDuplicates=true]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qrusty-client",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Node.js client for the qrusty priority queue server API.",
5
5
  "main": "index.js",
6
6
  "author": "Gordon Greene <greeng3@obscure-reference.com>",