From e4bc3f1010ce78482f85288e66080a4f8e968476 Mon Sep 17 00:00:00 2001 From: Ryc O'Chet Date: Wed, 21 Sep 2016 09:21:42 +0100 Subject: [PATCH] Release v1.3.1 --- README.md | 3 ++- velocity.js | 4 ++-- velocity.ui.js | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3661fd01..2440615f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -##Velocity 1.2.3 +##Velocity 1.3.1 **Docs** [http://VelocityJS.org](http://velocityjs.org) @@ -29,6 +29,7 @@ Ask on [StackOverflow](http://stackoverflow.com/tags/velocity.js) (make sure you ###**Updates** +- **1.3.0**: Code cleanup - no breaking changes known. - **1.2.0**: [Custom tweens](http://VelocityJS.org/#progress). [Custom easings](http://VelocityJS.org/#easing). ["Finish" command](http://VelocityJS.org/#finish). See [commit log](https://github.com/julianshapiro/velocity/commit/2a28e3812c6fe9262244ed3b6d41d12ae9a107c6) for more. - **1.0.0**: File name changed to `velocity.js`. Read [VelocityJS.org/#dependencies](http://VelocityJS.org/#dependencies). - **0.1.0**: `stop` now stops animations *immediately* (instead of only clearing the remainder of the animation queue). No other backwards-incompatible changes were made. diff --git a/velocity.js b/velocity.js index 92eaabb9..391f68df 100644 --- a/velocity.js +++ b/velocity.js @@ -1,4 +1,4 @@ -/*! VelocityJS.org (1.3.0). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */ +/*! VelocityJS.org (1.3.1). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */ /************************* Velocity jQuery Shim @@ -671,7 +671,7 @@ hook: null, /* Defined below. */ /* Velocity-wide animation time remapping for testing purposes. */ mock: false, - version: {major: 1, minor: 3, patch: 0}, + version: {major: 1, minor: 3, patch: 1}, /* Set to 1 or 2 (most verbose) to output debug info to console. */ debug: false }; diff --git a/velocity.ui.js b/velocity.ui.js index 08fb14c5..78801c44 100644 --- a/velocity.ui.js +++ b/velocity.ui.js @@ -2,7 +2,7 @@ Velocity UI Pack **********************/ -/* VelocityJS.org UI Pack (5.1.0). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License. Portions copyright Daniel Eden, Christian Pucci. */ +/* VelocityJS.org UI Pack (5.1.1). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License. Portions copyright Daniel Eden, Christian Pucci. */ (function(factory) { "use strict"; @@ -60,7 +60,7 @@ } if (greaterSemver(requiredVersion, velocityVersion)) { - var abortError = "Velocity UI Pack: You need to update Velocity (jquery.velocity.js) to a newer version. Visit http://github.com/julianshapiro/velocity."; + var abortError = "Velocity UI Pack: You need to update Velocity (velocity.js) to a newer version. Visit http://github.com/julianshapiro/velocity."; alert(abortError); throw new Error(abortError); }