Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmtech committed Apr 28, 2017
1 parent 19a61cb commit a69d695
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vts-browser-js",
"version": "2.1.2",
"version": "2.1.3",
"description": "JavaScript WebGL 3D maps rendering engine",
"main": "src/browser/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ string getCoreVersion()
*/

function getCoreVersion(full) {
return (full ? 'Core: ' : '') + '2.1.2';
return (full ? 'Core: ' : '') + '2.1.3';
}


Expand Down
2 changes: 0 additions & 2 deletions src/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ import {CoreInterface as CoreInterface_} from './interface';
import {vec2 as vec2_, vec3 as vec3_, vec4 as vec4_, mat3 as mat3_, mat4 as mat4_} from './utils/matrix';
import {utils as utils_} from './utils/utils';
import {math as math_} from './utils/math';
import {Core as Core_} from './core';

//get rid of compiler mess
var getCoreVersion = getCoreVersion_, checkSupport = checkSupport_;
var CoreInterface = CoreInterface_;
var vec2 = vec2_, vec3 = vec3_, vec4 = vec4_, mat3 = mat3_, mat4 = mat4_;
var utils = utils_;
var math = math_;
var Core = Core_;
var proj4 = Proj4;


Expand Down

0 comments on commit a69d695

Please sign in to comment.