Update VERSION and XOS parent container

Fix model to use integers in choice list

Change-Id: Ia24ab3005d14c7cf2eeefda79a2579c7f933fc13
diff --git a/xos/synchronizer/models/mcord.xproto b/xos/synchronizer/models/mcord.xproto
index 033e0c7..a522ef7 100644
--- a/xos/synchronizer/models/mcord.xproto
+++ b/xos/synchronizer/models/mcord.xproto
@@ -14,6 +14,6 @@
 
     required string imsi_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
     optional string apn_number = 2 [max_length = 30, content_type = "stripped", blank = True, null = True, db_index = False];
-    optional int32 ue_status = 3 [default = "0", choices = "(('0', 'Detached'), ('1', 'Attached'))", blank = True, null = True, db_index = False];
+    optional int32 ue_status = 3 [default = 0, choices = "((0, 'Detached'), (1, 'Attached'))", blank = True, null = True, db_index = False];
     optional string created_by = 4 [null = True, blank = True, gui_hidden = True];
 }