Skip to content

Commit

Permalink
Bump version 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
  • Loading branch information
Jianhui Zhao committed Apr 28, 2019
1 parent 78b369f commit cccc1fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[4]: https://github.com/zhaojh329/libumqtt/pulls
[5]: https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=plastic
[6]: https://github.com/zhaojh329/libumqtt/issues/new
[7]: https://img.shields.io/badge/release-1.0.0-blue.svg?style=plastic
[7]: https://img.shields.io/badge/release-1.0.1-blue.svg?style=plastic
[8]: https://github.com/zhaojh329/libumqtt/releases
[9]: https://travis-ci.org/zhaojh329/libumqtt.svg?branch=master
[10]: https://travis-ci.org/zhaojh329/libumqtt
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ add_definitions(-O -Wall -Werror --std=gnu99 -D_GNU_SOURCE)
# The version number.
set(UMQTT_VERSION_MAJOR 1)
set(UMQTT_VERSION_MINOR 0)
set(UMQTT_VERSION_PATCH 0)
set(UMQTT_VERSION_PATCH 1)

# Check the third party Libraries
find_package(Libev REQUIRED)
Expand Down
3 changes: 2 additions & 1 deletion src/lua/umqtt_lua.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,9 @@ static void parse_options(lua_State *L, const char **host, int *port, bool *ssl,
opts->will_message = get_opt_string(L, 3, "message");
opts->will_qos = get_opt_integer(L, -3, "qos");
opts->will_retain = get_opt_boolean(L, 1, "retain");
lua_pop(L, 4);
}
lua_pop(L, 5);
lua_pop(L, 1);
}

static int umqtt_lua_connect(lua_State *L)
Expand Down

0 comments on commit cccc1fa

Please sign in to comment.