Skip to content

Commit

Permalink
New release. 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Oct 25, 2016
1 parent 578f56b commit 270ee82
Show file tree
Hide file tree
Showing 9 changed files with 547 additions and 333 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.2.9 - Unreleased
## Version 1.2.9 - 2016-10-24
* Allow SASL mechanisms to be supported to be passed in as option to `Strophe.Connection` constructor.
* Add new matching option to `Strophe.Handler`, namely `ignoreNamespaceFragment`.
* The `matchBare` matching option for `Strophe.Handler` has been renamed to
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ release:

.PHONY: check
check::
@@$(GRUNT) jshint
make stamp-bower
$(PHANTOMJS) node_modules/qunit-phantomjs-runner/runner-list.js tests/strophe.html

Expand Down
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.8",
"version": "1.2.9",
"license": "MIT",
"main": "strophe.js",
"authors": [
Expand Down
6 changes: 2 additions & 4 deletions 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.8",
"version": "1.2.9",
"homepage": "http://strophe.im/strophejs",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,9 +34,7 @@
"Brendon Crawford (brendoncrawford)",
"JC Brand (jcbrand)"
],
"licenses": [
"MIT"
],
"license": "MIT",
"main": "strophe.js",
"browser": "strophe.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if (!Array.prototype.indexOf) {


/** Function: Array.prototype.forEach
*
*
* This function is not available in IE < 9
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
*/
Expand All @@ -114,7 +114,7 @@ if (!Array.prototype.forEach) {
// method of O with the argument "length".
// 3. Let len be toUint32(lenValue).
var len = O.length >>> 0;
// 4. If isCallable(callback) is false, throw a TypeError exception.
// 4. If isCallable(callback) is false, throw a TypeError exception.
// See: http://es5.github.com/#x9.11
if (typeof callback !== "function") {
throw new TypeError(callback + ' is not a function');
Expand Down
2 changes: 1 addition & 1 deletion src/sha1.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* See http://pajhome.org.uk/crypt/md5 for details.
*/

/* jshint undef: true, unused: true:, noarg: true, latedef: true */
/* jshint undef: true, unused: true:, noarg: true, latedef: false */
/* global define */

/* Some functions and variables have been stripped for use with Strophe */
Expand Down
Loading

0 comments on commit 270ee82

Please sign in to comment.