#83 closed defect (fixed)
Add versioning: dojo.version
Reported by: | david | Owned by: | alex |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | General | Version: | 0.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
We need to have a dojo.version
property set so we can better keep track of dojo builds "in the wild". The proposed scheme from the IRC session was:
dojo.version = { major: 0, minor: 1, patch: 0, revision: "repoRevision", toString: function() { var v = dojo.version; return v.major + "." + v.minor + "." + v.patch + " rev" + v.revision; } }
Note: See
TracTickets for help on using
tickets.
fixed with [1281], [1282], and [1283]