diff --git a/CHANGELOG.md b/CHANGELOG.md index 00837829..9a1e3326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ # Strophe.js Change Log -## Version 1.4.2 - (Unreleased) +## Version 1.4.2 - (2021-04-28) * Update optional NodeJS-specific dependency xmldom to version 0.5.0 which includes a security fix. -* Add `clientChallenge` SASL mechanism method to avoid having to monkey patch `onChallenge`, +* #369 Add `clientChallenge` SASL mechanism method to avoid having to monkey patch `onChallenge`, which prevents reconnection when using SCRAM-SHA1. ## Version 1.4.1 - (2020-12-02) diff --git a/README.md b/README.md index 9cca38d8..b139350a 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.4.1/files/strophe-js.html) +* [Documentation](http://strophe.im/strophejs/doc/1.4.2/files/strophe-js.html) * [Mailing list](http://groups.google.com/group/strophe) * [Community Plugins](http://github.com/strophe/strophejs-plugins) diff --git a/package-lock.json b/package-lock.json index b36fd631..65a26a1a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "strophe.js", - "version": "1.4.1", + "version": "1.4.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0b3a5065..b400fb8e 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.4.1", + "version": "1.4.2", "homepage": "http://strophe.im/strophejs", "repository": { "type": "git", diff --git a/src/core.js b/src/core.js index 68be80b2..de6356bf 100644 --- a/src/core.js +++ b/src/core.js @@ -82,7 +82,7 @@ export function $pres(attrs) { */ export const Strophe = { /** Constant: VERSION */ - VERSION: "1.4.1", + VERSION: "1.4.2", /** Constants: XMPP Namespace Constants * Common namespace constants from the XMPP RFCs and XEPs.