File:version.js
(function() {
/**
* Static class holding library specific information such as the version and buildDate of
* the library.
* @class EaselJS
**/
var o = this.createjs = this.createjs||{};
o = (o.EaselJS = o.EaselJS||{});
/**
* The version string for this release.
* @property version
* @type String
* @static
**/
o.version = /*version*/"0.6.1"; // injected by build process
/**
* The build date for this release in UTC format.
* @property buildDate
* @type String
* @static
**/
o.buildDate = /*date*/"Thu, 16 May 2013 16:05:45 GMT"; // injected by build process
})();