Skip to content

Commit

Permalink
release 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
100pah committed Mar 27, 2017
1 parent b49ce1a commit c0f3b3d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -3148,7 +3148,7 @@ define('zrender/tool/color',['require','../core/LRU'],function(require) {
out[0] = clampCssByte(lerp(leftColor[0], rightColor[0], dv));
out[1] = clampCssByte(lerp(leftColor[1], rightColor[1], dv));
out[2] = clampCssByte(lerp(leftColor[2], rightColor[2], dv));
out[3] = clampCssByte(lerp(leftColor[3], rightColor[3], dv));
out[3] = clampCssFloat(lerp(leftColor[3], rightColor[3], dv));
return out;
}
/**
Expand Down Expand Up @@ -9426,7 +9426,7 @@ define('zrender/zrender',['require','./core/guid','./core/env','./core/util','./
/**
* @type {string}
*/
zrender.version = '3.4.0';
zrender.version = '3.4.1';

/**
* Initializing a zrender instance
Expand Down
4 changes: 2 additions & 2 deletions build/zrender.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zrender",
"version": "3.4.0",
"version": "3.4.1",
"description": "A lightweight canvas library.",
"keywords": [
"canvas",
Expand Down
2 changes: 1 addition & 1 deletion src/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define(function(require) {
/**
* @type {string}
*/
zrender.version = '3.4.0';
zrender.version = '3.4.1';

/**
* Initializing a zrender instance
Expand Down

0 comments on commit c0f3b3d

Please sign in to comment.