Skip to content

Commit

Permalink
Bumped to version 0.9.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Aug 9, 2023
1 parent 524f223 commit 928cd34
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 14 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,10 @@ include priv/make/code.mk
include priv/make/docs.mk


hex-publish:
@echo "\nPublishing to hex.pm ...\n"
rm -rf doc
mkdir doc
cp priv/html/docs-redirect.html doc/index.html
rebar3 hex publish
rm -rf doc
12 changes: 12 additions & 0 deletions priv/html/docs-redirect.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>

<head>
<meta http-equiv="refresh" content="0; url='https://github.com/lfex/kla'" />
</head>

<body>
<p>Redirecting to main project docs ...</p>
</body>

</html>
30 changes: 16 additions & 14 deletions src/kla.app.src
Original file line number Diff line number Diff line change
@@ -1,29 +1,26 @@
%% -*- erlang -*-
{application, kla,
[
{application, kla, [
%% A quick description of the application.
{description, "An LFE Wrapper Library used to Dress Up Erlang Libraries in a Lispy Costume"},

%% The version of the application
{vsn, "0.9.0"},
{vsn, "0.9.1"},

%% All modules used by the application.
{modules,
[
{modules, [
kla
]},
]},

%% All of the registered names the application uses. This can be ignored.
{registered, []},

%% Applications that are to be started prior to this one. This can be ignored
%% leave it alone unless you understand it well and let the .rel files in
%% your release handle this.
{applications,
[
{applications, [
kernel,
stdlib
]},
]},

%% OTP application loader will load, but not start, included apps. Again
%% this can be ignored as well. To load but not start an application it
Expand All @@ -36,11 +33,16 @@

%% Hex.pm metadata
{pkg_name, kla},
{maintainers, ["Duncan McGreggor"]},
{licenses, ["BSD-3"]},
{links,
[{"GitHub", "https://github.com/lfex/kla"},
{links, [
{"GitHub", "https://github.com/lfex/kla"},
{"Gitlab", "https://gitlab.com/lfex/kla"},
{"Hex", "https://hex.pm/packages/kla"}
]}
]}.
]},
{exclude_files, [
"priv/images/*",
"priv/html/*",
"priv/make/*",
"priv/scripts/*"
]}
]}.

0 comments on commit 928cd34

Please sign in to comment.