فهرست منبع

fix: rename EMQ X to EMQX

Shawn 2 سال پیش
والد
کامیت
5b0dcafc97
3فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 3 3
      README.md
  2. 1 1
      src/emqx_plugrel.app.src
  3. 2 2
      src/emqx_plugrel.erl

+ 3 - 3
README.md

@@ -1,6 +1,6 @@
 # emqx_plugrel
 
-A rebar plugin to help create EMQ X plugin release package (.tar.gz)
+A rebar plugin to help create EMQX plugin release package (.tar.gz)
 
 ## Build
 
@@ -29,9 +29,9 @@ Add the plugin to your rebar.config:
 %% Additional information to describe more details about the plugin.
 %% This part will be generated to a JSON file in the release package.
 {emqx_plugrel,
-    [ {authors, ["EMQ X Team"]}
+    [ {authors, ["EMQX Team"]}
     , {builder,
-        [ {name, "EMQ X Team"}
+        [ {name, "EMQX Team"}
         , {contact, "emqx-support@emqx.io"}
         , {website, "www.emqx.com"}
         ]}

+ 1 - 1
src/emqx_plugrel.app.src

@@ -1,5 +1,5 @@
 {application, emqx_plugrel,
- [{description, "A rebar plugin to help relese EMQ X plugins package"},
+ [{description, "A rebar plugin to help relese EMQX plugins package"},
   {vsn, "0.1.0"},
   {registered, []},
   {applications,

+ 2 - 2
src/emqx_plugrel.erl

@@ -17,8 +17,8 @@ init(State) ->
             {deps, [{default, release}]},  % The list of dependencies
             {example, "rebar3 emqx_plugrel tar"}, % How to use the plugin
             {opts, [emqx_plugrel]}, % list of options understood by the plugin
-            {short_desc, "EMQ X plugin zip package"},
-            {desc, "A rebar3 plugin that helps to release a zip package for EMQ X plugin"}
+            {short_desc, "EMQX plugin zip package"},
+            {desc, "A rebar3 plugin that helps to release a zip package for EMQX plugin"}
     ]),
     {ok, rebar_state:add_provider(State, Provider)}.