diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | docker-compose.yml | 2 | ||||
-rw-r--r-- | jquery.once.js | 2 | ||||
-rw-r--r-- | jquery.once.min.js | 2 | ||||
-rw-r--r-- | once.jquery.json | 2 | ||||
-rw-r--r-- | package.json | 10 | ||||
-rw-r--r-- | test/test.js | 2 |
9 files changed, 15 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index 7f8d7d8..1bd017b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ sudo: false node_js: - "4" - - "5" - "6" cache: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a247cf..62501ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [2.1.3] - November 22nd, 2016 +### Changed +- Updated dependencies + ## [2.1.2] - June 11th, 2016 ### Changed - Updated development dependencies diff --git a/component.json b/component.json index f80bfc4..0260f1b 100644 --- a/component.json +++ b/component.json @@ -4,7 +4,7 @@ "homepage": "http://github.com/robloach/jquery-once", "description": "Act on jQuery elements only once.", "license": "GPL-2.0", - "version": "2.1.2", + "version": "2.1.3", "keywords": [ "jquery", "jquery-plugin" diff --git a/docker-compose.yml b/docker-compose.yml index fbe0d94..e3aa760 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ # # 1. Install Docker Compose # -# https://docs.docker.com/compose/) +# https://docs.docker.com/compose/ # # 2. Run the following to test jQuery Once: # diff --git a/jquery.once.js b/jquery.once.js index 7f41404..46e33a3 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -1,5 +1,5 @@ /*! - * jQuery Once v2.1.2 - http://github.com/robloach/jquery-once + * jQuery Once v2.1.3 - http://github.com/robloach/jquery-once * @license MIT, GPL-2.0 * http://opensource.org/licenses/MIT * http://opensource.org/licenses/GPL-2.0 diff --git a/jquery.once.min.js b/jquery.once.min.js index 81f23ec..f86ff1c 100644 --- a/jquery.once.min.js +++ b/jquery.once.min.js @@ -1,5 +1,5 @@ /*! - * jQuery Once v2.1.2 - http://github.com/robloach/jquery-once + * jQuery Once v2.1.3 - http://github.com/robloach/jquery-once * @license MIT, GPL-2.0 * http://opensource.org/licenses/MIT * http://opensource.org/licenses/GPL-2.0 diff --git a/once.jquery.json b/once.jquery.json index 68f6930..88aa048 100644 --- a/once.jquery.json +++ b/once.jquery.json @@ -6,7 +6,7 @@ "jquery", "once" ], - "version": "2.1.2", + "version": "2.1.3", "author": { "name": "Rob Loach", "url": "http://robloach.net" diff --git a/package.json b/package.json index db07cfd..4678362 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "jquery-once", "title": "jQuery Once", "description": "Act on jQuery elements only once.", - "version": "2.1.2", + "version": "2.1.3", "keywords": [ "jquery", "jquery-plugin" @@ -33,12 +33,12 @@ "jquery": "*" }, "devDependencies": { - "jsdoc-to-markdown": "^1.2.0", - "jsdom": "~9.4.1", - "mocha": "~2.5.1", + "jsdoc-to-markdown": "^2.0.1", + "jsdom": "~9.8.3", + "mocha": "~3.1.2", "mocha-jsdom": "~1.1.0", "uglify-js": "~2.7.0", - "xo": "^0.16.0" + "xo": "^0.17.1" }, "scripts": { "pretest": "npm install", diff --git a/test/test.js b/test/test.js index c1f3a24..bd02f7d 100644 --- a/test/test.js +++ b/test/test.js @@ -21,7 +21,7 @@ describe('jQuery Once', function () { */ before(function () { $ = require('jquery'); - require('../jquery.once.js'); + $.once = require('../jquery.once.js'); }); /** |