From b5e20699a48e2f9c2659443fdf80b919587384de Mon Sep 17 00:00:00 2001 From: Alex Litvak Date: Fri, 1 Dec 2017 19:56:45 +0600 Subject: [PATCH] Bump version and update readme --- README.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c466019..58ef421 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,8 @@ If a queue does not exist, it will be created upon the first posting of a messag ```javascript queue.post(messages, function(error, body) {}); +//without callback +queue.post("hello IronMQ!"); // single message queue.post("hello IronMQ!", function(error, body) {}); // with options diff --git a/package.json b/package.json index 1d1f79b..0e103c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iron_mq", - "version": "0.9.2", + "version": "0.9.3", "description": "Node client for IronMQ", "homepage": "https://github.com/iron-io/iron_mq_node", "author": "Andrew Kirilenko, Yury Yantsevich & Iron.io, Inc",