Skip to content

Commit

Permalink
0.3.4 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Sep 13, 2017
1 parent 1fc9521 commit e77adda
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
0.3.4 / 2017-09-13
==================
- [docs] Show method arguments in tables.

### messaging-api-messenger
- [new] Support message batching via `sendBatch`:

```js
const { Messenger } = require('messaging-api-messenger');

client.sendBatch([
Messenger.createText(USER_ID, '1'),
Messenger.createText(USER_ID, '2'),
Messenger.createText(USER_ID, '3'),
Messenger.createText(USER_ID, '4'),
Messenger.createText(USER_ID, '5'),
]);
```

0.3.3 / 2017-09-07
==================
- publish docs changes to npm.
Expand Down

0 comments on commit e77adda

Please sign in to comment.