diff --git a/CHANGELOG.md b/CHANGELOG.md index 559bbd49..ea98f9f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Strophe.js Change Log -## Version 1.5.0 - (Unreleased) +## Version 1.5.0 - (2022-04-28) * Add an automatic fallback handler for unhandled IQ "set" and "get" stanzas that returns an IQ error with `service-unavailable`. +* Update various 3rd party dependencies +* #418 BOSH fix: mark first request dead when second is done ## Version 1.4.4 - (2022-01-21) diff --git a/package-lock.json b/package-lock.json index 928767ee..b4e2f29c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "strophe.js", - "version": "1.4.4", + "version": "1.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "strophe.js", - "version": "1.4.4", + "version": "1.5.0", "license": "MIT", "dependencies": { "abab": "^2.0.3", diff --git a/package.json b/package.json index 34b70296..863cead9 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.4", + "version": "1.5.0", "homepage": "http://strophe.im/strophejs", "repository": { "type": "git", diff --git a/src/core.js b/src/core.js index cfa459f4..525c0dba 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.4", + VERSION: "1.5.0", /** Constants: XMPP Namespace Constants * Common namespace constants from the XMPP RFCs and XEPs.