Skip to content

Commit 9f4aacd

Browse files
committed
Release 1.5.0
IE9 passes all tests, IE8 still has issues
1 parent 4184d8e commit 9f4aacd

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Velocity 1.4.3
1+
# Velocity 1.5.0
22

33
## Docs
44
[http://VelocityJS.org](http://velocityjs.org)
@@ -18,14 +18,14 @@ NPM: https://www.npmjs.com/package/velocity-react
1818
## Quickstart
1919
### Velocity (CDN, choose one of them):
2020
```html
21-
<script src="//cdn.jsdelivr.net/velocity/1.4/velocity.min.js"></script>
22-
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.4.3/velocity.min.js"></script>
21+
<script src="//cdn.jsdelivr.net/velocity/1.5/velocity.min.js"></script>
22+
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.min.js"></script>
2323
```
2424

2525
### Velocity UI pack (CDN, choose one of them):
2626
```html
27-
<script src="//cdn.jsdelivr.net/velocity/1.4/velocity.ui.min.js"></script>
28-
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.4.3/velocity.ui.min.js"></script>
27+
<script src="//cdn.jsdelivr.net/velocity/1.5/velocity.ui.min.js"></script>
28+
<script src="//cdnjs.cloudflare.com/ajax/libs/velocity/1.5.0/velocity.ui.min.js"></script>
2929
```
3030

3131
> Please note that JSDelivr will automatically supply the latest release, while CloudFlare needs to ask for a specific version.
@@ -38,6 +38,7 @@ _bower:_ `bower install velocity`
3838
Ask on [StackOverflow](http://stackoverflow.com/tags/velocity.js) (make sure you add the `[velocity.js]` and `[javascript]` tags).
3939

4040
## Updates
41+
- **[1.5](https://github.com/julianshapiro/velocity/compare/1.4.0...1.5.0)**: Bugfixes, IE9 compatibility fixes.
4142
- **[1.4](https://github.com/julianshapiro/velocity/compare/1.3.0...1.4.0)**: Pause / Resume (per element or global).<br>
4243
Forcefed string animation (just have matching number spaces) including unit conversions and colour names (ie `background:["rgba(red,0.1)", "blue"]`).
4344
High resolution timers (animations should be slightly smoother).<br>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "velocity-animate",
3-
"version": "1.4.3",
3+
"version": "1.5.0",
44
"description": "Accelerated JavaScript animation.",
55
"keywords": [
66
"velocity",
@@ -37,7 +37,7 @@
3737
],
3838
"devDependencies": {
3939
"grunt": "^1.0.1",
40-
"grunt-contrib-jshint": "~1.0.0",
41-
"grunt-contrib-uglify": "~2.0.0"
40+
"grunt-contrib-jshint": "~1.1.0",
41+
"grunt-contrib-uglify": "~2.2.0"
4242
}
4343
}

velocity.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! VelocityJS.org (1.4.3). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */
1+
/*! VelocityJS.org (1.5.0). (C) 2014 Julian Shapiro. MIT @license: en.wikipedia.org/wiki/MIT_License */
22

33
/*************************
44
Velocity jQuery Shim
@@ -777,7 +777,7 @@
777777
hook: null, /* Defined below. */
778778
/* Velocity-wide animation time remapping for testing purposes. */
779779
mock: false,
780-
version: {major: 1, minor: 4, patch: 3},
780+
version: {major: 1, minor: 5, patch: 0},
781781
/* Set to 1 or 2 (most verbose) to output debug info to console. */
782782
debug: false,
783783
/* Use rAF high resolution timestamp when available */

velocity.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

velocity.ui.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)