Skip to content

Commit

Permalink
Set vsn to 1.2.0 to make rebar3 hex publish happy
Browse files Browse the repository at this point in the history
�Don't ask me why!
  • Loading branch information
rvirding committed Mar 8, 2024
1 parent b980c7d commit 09c489c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions ebin/luerl.app
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application,luerl,
[{description,"Luerl - an implementation of Lua on Erlang"},
{vsn,"1.2"},
{vsn,"1.2.0"},
{modules,['Elixir.Luerl.New','Elixir.Luerl',luerl,luerl_anno,
luerl_app,luerl_comp,luerl_comp_cg,luerl_comp_env,
luerl_comp_lint,luerl_comp_locf,luerl_comp_normalise,
Expand All @@ -16,7 +16,6 @@
{applications,[kernel,stdlib]},
{env,[]},
{mod,{luerl_app,[]}},
{maintainers,["Robert Virding"]},
{licenses,["Apache-2.0"]},
{links,[{"Github","https://github.com/rvirding/luerl"}]},
{files,["README.md","LICENSE","VERSION","src","doc",
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{apps, [luerl]}
]}.

{relx, [{release, {luerl, "1.2"},
{relx, [{release, {luerl, "1.2.0"},
[kernel,
stdlib,
sasl,
Expand Down
5 changes: 2 additions & 3 deletions src/luerl.app.src
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%% -*- mode: erlang; indent-tabs-mode: nil -*-
%% Copyright (c) 2013-2023 Robert Virding
%% Copyright (c) 2013-2024 Robert Virding
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
Expand All @@ -15,13 +15,12 @@

{application, luerl,
[{description, "Luerl - an implementation of Lua on Erlang"},
{vsn, "1.2"},
{vsn, "1.2.0"},
{modules, []},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
{mod, {luerl_app, []}},
{maintainers, ["Robert Virding"]},

%% Project metadata
{licenses, ["Apache-2.0"]},
Expand Down

0 comments on commit 09c489c

Please sign in to comment.