Skip to content

Commit 4df9621

Browse files
committed
version bump 1.1.0
1 parent 9b62e20 commit 4df9621

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pc.app.src

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{application,pc,
22
[{description,"a rebar3 port compiler for native code"},
3-
{vsn,"1.0.0"},
3+
{vsn,"1.1.0"},
44
{registered,[]},
55
{applications,[kernel,stdlib]},
66
{env,[]},
77
{modules,[]},
8-
{contributors,["Brian L. Troutwine"]},
8+
{maintainers,["Brian L. Troutwine", "Tristan Sloughter"]},
99
{licenses,["MIT"]},
1010
{links,[{"Github","https://github.com/blt/port_compiler"}]}]}.

src/pc_compilation.erl

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ expand_command(TmplName, Env, InFiles, OutFile) ->
132132
Cmd1 = rebar_api:expand_env_variable(Cmd0, "PORT_IN_FILES", InFiles),
133133
rebar_api:expand_env_variable(Cmd1, "PORT_OUT_FILE", OutFile).
134134

135-
exec_compiler(Config, Source, Cmd, ShOpts) ->
135+
exec_compiler(_Config, Source, Cmd, ShOpts) ->
136136
case rebar_utils:sh(Cmd, ShOpts) of
137137
{error, {_RC, RawError}} ->
138138
AbsSource = filename:absname(Source),

0 commit comments

Comments
 (0)