diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e709185..fc34a0f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Strophe.js Change Log +## Version 1.3.4 - (2019-08-08) + +* Replace webpack with rollup +* `TypeError: this._changeConnectStatus is not a function` +* Bugfix. Remove handlers on closed socket +* Add new Strophe.Connection option `explicitResourceBinding`. + If is set to true the XMPP client needs to explicitly + call `Strophe.Connection.prototype.bind` once the XMPP + server has advertised the "urn:ietf:params:xml:ns:xmpp-bind" feature. + ## Version 1.3.3 - (2019-05-13) * The dist files are no longer included in the repo, but generated by NPM/Yarn diff --git a/README.md b/README.md index 9bf1bc91..bde94bb5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ covers Strophe in detail in the context of web applications. ## Quick Links * [Homepage](http://strophe.im/strophejs) -* [Documentation](http://strophe.im/strophejs/doc/1.3.0/files/strophe-js.html) +* [Documentation](http://strophe.im/strophejs/doc/1.3.4/files/strophe-js.html) * [Mailing list](http://groups.google.com/group/strophe) * [Community Plugins](http://github.com/strophe/strophejs-plugins) diff --git a/RELEASE_CHECKLIST.md b/RELEASE_CHECKLIST.md index 4834a00e..7e4dbc20 100644 --- a/RELEASE_CHECKLIST.md +++ b/RELEASE_CHECKLIST.md @@ -2,8 +2,9 @@ 1. Make sure all tests pass (run 'make check') 2. Update CHANGELOG.md -3. Run "make release VERSION=1.3.3" (on Mac, prefix with "SED=gsed" so that GNU-sed is used). -4. Add documentation to strophe.im repo +3. Run `make release VERSION=1.3.5` (on Mac, prefix with "SED=gsed" so that GNU-sed is used). +4. Run `make doc` +5. Run `cp -r doc ../strophe.im/strophejs/doc/1.3.5` 5. Update links in `strophejs/index.markdown` in Strophe.im 6. Commit and push new documentation 7. Update link to documentation in README (of strophe.js) diff --git a/package-lock.json b/package-lock.json index 321cb716..40583d58 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "strophe.js", - "version": "1.3.3", + "version": "1.3.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b9609d66..ff844488 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "strophe.js", "description": "Strophe.js is an XMPP library for JavaScript", - "version": "1.3.3", + "version": "1.3.4", "homepage": "http://strophe.im/strophejs", "repository": { "type": "git",