Skip to content

Commit 1f5f045

Browse files
committed
Version bumpup: 1.0.0 → 1.0.1
1 parent e1ad120 commit 1f5f045

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.0.1
33
commit = True
44
commit_args = --no-verify
55
tag = True

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Download the plugin:
66

77
<!-- Do not update plugin version manually, use make bump-version-patch/minor/major instead -->
88
```bash
9-
wget https://github.com/emqx/emqx-offline-message-plugin/releases/download/v1.0.0/emqx_offline_message_plugin-1.0.0.tar.gz
9+
wget https://github.com/emqx/emqx-offline-message-plugin/releases/download/v1.0.1/emqx_offline_message_plugin-1.0.1.tar.gz
1010
```
1111

1212
Install the plugin:
@@ -15,7 +15,7 @@ Install the plugin:
1515
```bash
1616
curl -u key:secret -X POST http://localhost:18083/api/v5/plugins/install \
1717
-H "Content-Type: multipart/form-data" \
18-
-F "plugin=@emqx_offline_message_plugin-1.0.0.tar.gz"
18+
-F "plugin=@emqx_offline_message_plugin-1.0.1.tar.gz"
1919
```
2020

2121
Check the plugin is installed:
@@ -24,7 +24,7 @@ Check the plugin is installed:
2424
curl -u key:secret http://localhost:18083/api/v5/plugins | jq
2525
```
2626

27-
Configure the plugin in the Dashboard: http://localhost:18083/#/plugins/detail/emqx_offline_message_plugin-1.0.0
27+
Configure the plugin in the Dashboard: http://localhost:18083/#/plugins/detail/emqx_offline_message_plugin-1.0.1
2828

2929
Verify:
3030

include/emqx_omp.hrl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
-define(PLUGIN_NAME, emqx_offline_message_plugin).
77

88
%% Do not update version manually, use make bump-version-patch/minor/major instead
9-
-define(PLUGIN_RELEASE_VERSION, "1.0.0").
9+
-define(PLUGIN_RELEASE_VERSION, "1.0.1").
1010

1111
-define(PLUGIN_NAME_VSN, <<"emqx_offline_message_plugin-", ?PLUGIN_RELEASE_VERSION>>).

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
{relx, [
4040
{release,
4141
%% Do not update version manually, use make bump-version-patch/minor/major instead
42-
{emqx_offline_message_plugin, "1.0.0"},
42+
{emqx_offline_message_plugin, "1.0.1"},
4343
[
4444
emqx_offline_message_plugin
4545
]

src/emqx_offline_message_plugin.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{application, emqx_offline_message_plugin, [
22
{description, "EMQX Offline Message Plugin"},
33
%% Do not update version manually, use make bump-version-patch/minor/major instead
4-
{vsn, "1.0.0"},
4+
{vsn, "1.0.1"},
55
{modules, []},
66
{registered, [emqx_omp_sup]},
77
{applications, [kernel, stdlib]},

0 commit comments

Comments
 (0)