Browse Source

fix(lwm2m): bump version in appup and add upgrade instructions

Zaiming Shi 4 năm trước cách đây
mục cha
commit
224cc0d5c7
1 tập tin đã thay đổi với 7 bổ sung5 xóa
  1. 7 5
      apps/emqx_lwm2m/src/emqx_lwm2m.appup.src

+ 7 - 5
apps/emqx_lwm2m/src/emqx_lwm2m.appup.src

@@ -1,19 +1,21 @@
 %% -*-: erlang -*-
-{"4.3.3",
+{"4.3.4",
   [
-    {<<"4.3.[0-1]">>, [
+    {<<"4\\.3\\.[0-1]">>, [
       {restart_application, emqx_lwm2m}
     ]},
     {"4.3.2", [
       {load_module, emqx_lwm2m_message, brutal_purge, soft_purge, []}
-    ]}
+    ]},
+    {"4.3.3", []} %% only config change
   ],
   [
-    {<<"4.3.[0-1]">>, [
+    {<<"4\\.3\\.[0-1]">>, [
       {restart_application, emqx_lwm2m}
     ]},
     {"4.3.2", [
       {load_module, emqx_lwm2m_message, brutal_purge, soft_purge, []}
-    ]}
+    ]},
+    {"4.3.3", []} %% only config change
   ]
 }.