Skip to content

Commit

Permalink
New release 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Jun 6, 2016
1 parent 287d579 commit 935cb2f
Show file tree
Hide file tree
Showing 6 changed files with 199 additions and 252 deletions.
2 changes: 1 addition & 1 deletion bower.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.2.5",
"version": "1.2.6",
"license": "MIT",
"main": "strophe.js",
"authors": [
Expand Down
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.2.5",
"version": "1.2.6",
"homepage": "http://strophe.im/strophejs",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion release_checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Release Checklist
*** Make sure all tests pass (run 'make check')
*** Decide on version number
*** Update CHANGELOG.txt
*** Update CHANGELOG.md
*** Check for correct version number in package.json and bower,json
*** Run "make release"
*** Commit the newly generated files (mention it's a new release)
Expand Down
2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -3389,7 +3389,7 @@ Strophe.SASLOAuthBearer.test = function(connection) {
Strophe.SASLOAuthBearer.prototype.onChallenge = function(connection) {
var auth_str = 'n,a=';
auth_str = auth_str + connection.authzid;
auth_str = auth_str + ','
auth_str = auth_str + ',';
auth_str = auth_str + "\u0001";
auth_str = auth_str + 'auth=Bearer ';
auth_str = auth_str + connection.pass;
Expand Down
Loading

0 comments on commit 935cb2f

Please sign in to comment.