Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Oct 29, 2022
1 parent 965b20c commit 4141e02
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Strophe.js Change Log

## Version 1.6.0 - (Unreleased)
## Version 1.6.0 - (2022-10-29)

* #314 Support for SCRAM-SHA-256 and SCRAM-SHA-512 authentication

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ covers Strophe in detail in the context of web applications.
## Quick Links

* [Homepage](https://strophe.im/strophejs/)
* [Documentation](https://strophe.im/strophejs/doc/1.4.2/files/strophe-umd-js.html)
* [Documentation](https://strophe.im/strophejs/doc/1.6.0/files/strophe-umd-js.html)
* [Mailing list](https://groups.google.com/g/strophe)
* [Community Plugins](https://github.com/strophe/strophejs-plugins)

Expand Down
12 changes: 6 additions & 6 deletions RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

1. Make sure all tests pass (run 'make check')
2. Update CHANGELOG.md
3. Run `make release VERSION=1.4.4` (on Mac, prefix with "SED=gsed" so that GNU-sed is used).
3. Run `make release VERSION=1.6.1` (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.4`
5. Run `cp -r doc ../strophe.im/strophejs/doc/1.6.1`
5. Update links in `../strophe.im/strophejs/index.markdown` in Strophe.im
6. `git commit -am "Docs for Strophe.js 1.4.4" && git push`
6. `git commit -am "Docs for Strophe.js 1.6.1" && git push`
7. Update link to documentation in README (of strophe.js)
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`
8. `cd ../strophe.js && git commit -am "Release 1.6.1"`
9. `git tag -s v1.6.1 -m "Release 1.6.1"`
10. Run `git push && git push origin v1.6.1`
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.
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "strophe.js",
"description": "Strophe.js is an XMPP library for JavaScript",
"version": "1.5.0",
"version": "1.6.0",
"homepage": "http://strophe.im/strophejs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function $pres(attrs) {
*/
export const Strophe = {
/** Constant: VERSION */
VERSION: "1.5.0",
VERSION: "1.6.0",

/** Constants: XMPP Namespace Constants
* Common namespace constants from the XMPP RFCs and XEPs.
Expand Down

0 comments on commit 4141e02

Please sign in to comment.