Comparing version 0.5.0 to 0.6.0
@@ -7,3 +7,3 @@ { | ||
"bugs": "http://github.com/xmppjs/xmpp.js/issues", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"license": "ISC", | ||
@@ -18,3 +18,3 @@ "keywords": [ | ||
"dependencies": { | ||
"ltx": "^2.8.0" | ||
"ltx": "^2.8.1" | ||
}, | ||
@@ -28,3 +28,3 @@ "engines": { | ||
}, | ||
"gitHead": "896f432d22dd726d158bd39a46aed7d53a2b7b1b" | ||
"gitHead": "4113d6db692a8b529a4bdd700115af4818e83634" | ||
} |
@@ -5,3 +5,3 @@ # xml | ||
Note, if you're using `@xml/client` or `@xml/component`, you don't need to install `@xmpp/xml` yourself. | ||
Note, if you're using `@xmpp/client` or `@xmpp/component`, you don't need to install `@xmpp/xml` yourself. | ||
@@ -147,5 +147,5 @@ `npm install @xmpp/xml` or `yarn add @xmpp/xml` | ||
```js | ||
message.append(xml('foo')) | ||
message.append('bar') | ||
message.append(days.map(day => xml('day', {}, day))) | ||
message.prepend(xml('foo')) | ||
message.prepend('bar') | ||
message.prepend(days.map(day => xml('day', {}, day))) | ||
// <message> | ||
@@ -152,0 +152,0 @@ // <day>Tuesday</day> |
9650
Updatedltx@^2.8.1