This commit is contained in:
Ery Lee 2015-03-02 14:23:20 +08:00
parent 8060a727b8
commit 682f005660
2 changed files with 12 additions and 2 deletions

View File

@ -2,7 +2,7 @@
eMQTT ChangeLog eMQTT ChangeLog
================== ==================
v0.3.1-beta (2015-03-01) v0.3.1-beta (2015-03-02)
------------------------ ------------------------
Feature: SSL Socket Support Feature: SSL Socket Support

View File

@ -1,10 +1,20 @@
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{require_min_otp_vsn, "R17"}. {require_min_otp_vsn, "R17"}.
{erl_opts, [debug_info, {parse_transform, lager_transform}]}. {erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{erl_opts, [{i, "include"}, {erl_opts, [warn_export_all,
warn_unused_import,
{i, "include"},
{src_dirs, ["src"]}]}. {src_dirs, ["src"]}]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, false}.
{validate_app_modules, true}.
{sub_dirs, [ {sub_dirs, [
"rel", "rel",
"apps/emqtt"]}. "apps/emqtt"]}.