diff options
author | Rob Loach <robloach@gmail.com> | 2015-08-31 11:22:35 -0400 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2015-08-31 11:22:35 -0400 |
commit | bf1a9801937145d6e14467d4b9b0e758c29fcbdf (patch) | |
tree | c0668f2f773373fb30ad01aa309786f9616185e9 | |
parent | 7ce051aeb974fbb0c4e4bbf79bcd87f95537e4e8 (diff) | |
download | jquery-once-bf1a9801937145d6e14467d4b9b0e758c29fcbdf.zip jquery-once-bf1a9801937145d6e14467d4b9b0e758c29fcbdf.tar.gz jquery-once-bf1a9801937145d6e14467d4b9b0e758c29fcbdf.tar.bz2 |
Fix version information in the source2.1.1
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | component.json | 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 | 2 |
6 files changed, 12 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d5778f5..e44538c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Nothing so far -## [2.1.0] - August 31, 2015 +## [2.1.1] - August 31st, 2015 +### Fixed +- Corrected version information in the source + +## [2.1.0] - August 31st, 2015 ### Changed - Switched to [Keep a CHANGELOG](http://keepachangelog.com) in CHANGELOG.md - Moved to [JavaScript Semi-Standard Coding Style](http://npm.im/semistandard) @@ -71,7 +75,8 @@ automatically build API documentation ### Added - Added jQuery Once -[unreleased]: https://github.com/RobLoach/jquery-once/compare/2.1.0...HEAD +[unreleased]: https://github.com/RobLoach/jquery-once/compare/2.1.1...HEAD +[2.1.1]: https://github.com/RobLoach/jquery-once/compare/2.1.0...2.1.1 [2.1.0]: https://github.com/RobLoach/jquery-once/compare/2.0.2...2.1.0 [2.0.2]: https://github.com/RobLoach/jquery-once/compare/2.0.1...2.0.2 [2.0.1]: https://github.com/RobLoach/jquery-once/compare/2.0.0...2.0.1 diff --git a/component.json b/component.json index 570297a..94eb72b 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.0.2", + "version": "2.1.1", "keywords": [ "jquery", "jquery-plugin" diff --git a/jquery.once.js b/jquery.once.js index 2300b22..471dd53 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -1,5 +1,5 @@ /*! - * jQuery Once v2.1.0 - http://github.com/robloach/jquery-once + * jQuery Once v2.1.1 - 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 e5caf7b..d15b280 100644 --- a/jquery.once.min.js +++ b/jquery.once.min.js @@ -1,5 +1,5 @@ /*! - * jQuery Once v2.1.0 - http://github.com/robloach/jquery-once + * jQuery Once v2.1.1 - 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 71c0f85..8fa2329 100644 --- a/once.jquery.json +++ b/once.jquery.json @@ -6,7 +6,7 @@ "jquery", "once" ], - "version": "2.1.0", + "version": "2.1.1", "author": { "name": "Rob Loach", "url": "http://robloach.net" diff --git a/package.json b/package.json index 6b99c98..a32aac6 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.0", + "version": "2.1.1", "keywords": [ "jquery", "jquery-plugin" |