From 9da72c07c645dd54c67d4749ccb8f32998cad870 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Thu, 16 Dec 2021 16:57:48 +0100 Subject: [PATCH] Prepare release 1.4.3 --- CHANGELOG.md | 2 +- RELEASE_CHECKLIST.md | 12 ++++++------ package-lock.json | 2 +- package.json | 2 +- src/core.js | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5e8db81..28fccd54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Strophe.js Change Log -## Version 1.4.3 - (Unreleased) +## Version 1.4.3 - (2021-12-16) * Update xmldom to version 0.7.5 * Add disconnection_timeout setting: an optional timeout in milliseconds before `_doDisconnect` is called. diff --git a/RELEASE_CHECKLIST.md b/RELEASE_CHECKLIST.md index 19ff0acf..e0e0376b 100644 --- a/RELEASE_CHECKLIST.md +++ b/RELEASE_CHECKLIST.md @@ -4,15 +4,15 @@ 1. Make sure all tests pass (run 'make check') 2. Update CHANGELOG.md -3. Run `make release VERSION=1.4.2` (on Mac, prefix with "SED=gsed" so that GNU-sed is used). +3. Run `make release VERSION=1.4.4` (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.4.2` +5. Run `cp -r doc ../strophe.im/strophejs/doc/1.4.4` 5. Update links in `../strophe.im/strophejs/index.markdown` in Strophe.im -6. `git commit -am "Docs for Strophe.js 1.4.2" && git push` +6. `git commit -am "Docs for Strophe.js 1.4.4" && git push` 7. Update link to documentation in README (of strophe.js) -8. `cd ../strophe.js && git commit -am "Release 1.4.2"` -9. `git tag -s v1.4.2 -m "Release 1.4.2"` -10. Run `git push && git push origin v1.4.2` +8. `cd ../strophe.js && git commit -am "Release 1.4.4"` +9. `git tag -s v1.4.4 -m "Release 1.4.4"` +10. Run `git push && git push origin v1.4.4` 11. Publish on NPM: `npm publish` 12. Update the release notes on https://github.com/strophe/strophejs/releases 13. Run `npm pack` and upload the tgz file to the releases page. diff --git a/package-lock.json b/package-lock.json index 965d0437..91f4982d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "strophe.js", - "version": "1.4.2", + "version": "1.4.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 623362bf..f341eb1c 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.2", + "version": "1.4.3", "homepage": "http://strophe.im/strophejs", "repository": { "type": "git", diff --git a/src/core.js b/src/core.js index dd30e060..0aee0a43 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.2", + VERSION: "1.4.3", /** Constants: XMPP Namespace Constants * Common namespace constants from the XMPP RFCs and XEPs.