Updated Branches: refs/heads/develop 0cd4a12c8 -> 1670303ca
Make 4.12 the new version Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/1670303c Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/1670303c Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/1670303c Branch: refs/heads/develop Commit: 1670303ca47182514df35845017885a01f9ff24e Parents: 0cd4a12 Author: Justin Mclean <[email protected]> Authored: Tue Oct 22 09:50:33 2013 +1100 Committer: Justin Mclean <[email protected]> Committed: Tue Oct 22 09:50:33 2013 +1100 ---------------------------------------------------------------------- .../src/java/flex2/compiler/common/MxmlConfiguration.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/1670303c/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java ---------------------------------------------------------------------- diff --git a/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java b/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java index fdd010b..caf564a 100644 --- a/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java +++ b/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java @@ -48,6 +48,7 @@ public class MxmlConfiguration // // 'compiler.mxml.compatibility-version' option // + public static final int VERSION_4_12 = 0x040c0000; public static final int VERSION_4_11 = 0x040b0000; public static final int VERSION_4_10 = 0x040a0000; public static final int VERSION_4_9_1 = 0x04090001; @@ -59,10 +60,10 @@ public class MxmlConfiguration public static final int VERSION_3_0 = 0x03000000; public static final int VERSION_2_0_1 = 0x02000001; public static final int VERSION_2_0 = 0x02000000; - public static final int CURRENT_VERSION = VERSION_4_11; + public static final int CURRENT_VERSION = VERSION_4_12; public static final int EARLIEST_MAJOR_VERSION = 3; public static final int LATEST_MAJOR_VERSION = 4; - public static final int LATEST_MINOR_VERSION = 11; + public static final int LATEST_MINOR_VERSION = 12; private int major = LATEST_MAJOR_VERSION; private int minor = LATEST_MINOR_VERSION;
