Skip to content

Commit 5fbd610

Browse files
committed
vsn bump
1 parent d1ab09b commit 5fbd610

File tree

5 files changed

+35
-70
lines changed

5 files changed

+35
-70
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2
1+
0.3.3

doc/overview-summary.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<body bgcolor="white">
99
<div class="navbar"><a name="#navbar_top"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
1010
<h1>The Achlys framework</h1>
11-
<p><b>Version:</b> : 0.3.2</p>
12-
<p><b>Authors:</b> Igor Kopestenski (<a href="mailto:igor.kopestenski@uclouvain.be"><tt>igor.kopestenski@uclouvain.be</tt></a>) [<em>web site:</em> <tt><a href="https://github.com/Laymer/" target="_top">https://github.com/Laymer/</a></tt>].</p>
11+
<p><b>Version:</b> : 0.3.3</p>
12+
<p><b>Authors:</b> Igor Kopestenski (<a href="mailto:igor.kopestenski@uclouvain.be"><tt>igor.kopestenski@uclouvain.be</tt></a>) [<em>web site:</em> <tt><a href="https://achlys.app/" target="_top">https://achlys.app/</a></tt>].</p>
1313
A base for building Erlang applications combining
1414
<a target="_blank" href="https://lasp-lang.readme.io/">Lasp</a> components for
1515
<a target="_blank" href="https://www.grisp.org">GRiSP</a> embedded systems at

doc/overview.edoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@author Igor Kopestenski <igor.kopestenski@uclouvain.be>
2-
[https://github.com/Laymer/]
3-
@version : 0.3.2
2+
[https://achlys.app/]
3+
@version : 0.3.3
44
@title The Achlys framework
55
@doc A base for building Erlang applications combining
66
<a target="_blank" href="https://lasp-lang.readme.io/">Lasp</a> components for

rebar.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
{ relx , [
6363
%%------------------------------------------------------------------------------
64-
{release , {achlys , "0.3.2"} , [
64+
{release , {achlys , "0.3.3"} , [
6565
grisp ,
6666
{epmd , none} ,
6767
partisan ,
@@ -88,7 +88,7 @@
8888
]} ,
8989
{relx , [
9090
{sys_config_src , "./config/test.config.src"} ,
91-
{release , {achlys , "0.3.2"} , [
91+
{release , {achlys , "0.3.3"} , [
9292
grisp ,
9393
{epmd , none} ,
9494
partisan ,

src/achlys.app.src

Lines changed: 28 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,28 @@
1-
{ application , achlys , [
2-
{description , "A framework for applications using Lasp
3-
on GRiSP embedded systems at the edge"} ,
4-
{vsn , "0.3.2"} ,
5-
6-
{registered , [achlys
7-
, achlys_app
8-
, achlys_sup
9-
, achlys_util
10-
, achlys_config
11-
, achlys_cleaner
12-
, achlys_sensor_commander
13-
, achlys_pmod_worker_sup
14-
, achlys_pmod_nav_worker
15-
, achlys_pmod_als_worker
16-
, achlys_task_server
17-
, achlys_task_worker
18-
, achlys_squadron_leader
19-
]} ,
20-
21-
{mod , {achlys_app , []}} ,
22-
{applications , [kernel
23-
, stdlib
24-
, grisp
25-
]} ,
26-
27-
{env , []} ,
28-
{modules , [
29-
achlys
30-
, achlys_app
31-
, achlys_sup
32-
, achlys_util
33-
, achlys_config
34-
, achlys_cleaner
35-
, achlys_sensor_commander
36-
, achlys_pmod_worker_sup
37-
, achlys_pmod_nav_worker
38-
, achlys_pmod_als_worker
39-
, achlys_task_server
40-
, achlys_task_worker
41-
, achlys_squadron_leader
42-
]} ,
43-
44-
{licenses , ["Apache 2.0"]} ,
45-
46-
{links , [
47-
{"Achlys" , "https://achlys.app"}
48-
, {"Github" , "https://github.com/achlysproject/achlys"}
49-
, {"GRiSP" , "https://www.grisp.org"}
50-
, {"Lasp" , "https://lasp-lang.readme.io"}
51-
, {"Partisan" , "https://partisan.cloud"}
52-
, {"LightKone" , "https://lightkone.eu/"}
53-
]} ,
54-
55-
{files , ["LICENSE"
56-
, "README.md"
57-
, "rebar.lock"
58-
, "src"
59-
, "grisp"
60-
, "Makefile"
61-
]} ,
62-
{build_tools , ["rebar3"]}
63-
]}.
1+
{application,achlys,
2+
[{description,"A framework for applications using Lasp\n on GRiSP embedded systems at the edge"},
3+
{vsn,"0.3.3"},
4+
{registered,[achlys,achlys_app,achlys_sup,achlys_util,
5+
achlys_config,achlys_cleaner,
6+
achlys_sensor_commander,achlys_pmod_worker_sup,
7+
achlys_pmod_nav_worker,achlys_pmod_als_worker,
8+
achlys_task_server,achlys_task_worker,
9+
achlys_squadron_leader]},
10+
{mod,{achlys_app,[]}},
11+
{applications,[kernel,stdlib,grisp]},
12+
{env,[]},
13+
{modules,[achlys,achlys_app,achlys_sup,achlys_util,
14+
achlys_config,achlys_cleaner,achlys_sensor_commander,
15+
achlys_pmod_worker_sup,achlys_pmod_nav_worker,
16+
achlys_pmod_als_worker,achlys_task_server,
17+
achlys_task_worker,achlys_squadron_leader]},
18+
{licenses,["Apache 2.0"]},
19+
{links,[{"Achlys","https://achlys.app"},
20+
{"Github","https://github.com/achlysproject/achlys"},
21+
{"GRiSP","https://www.grisp.org"},
22+
{"Lasp","https://lasp-lang.readme.io"},
23+
{"Partisan","https://partisan.cloud"},
24+
{"LightKone","https://lightkone.eu/"}]},
25+
{files,["LICENSE","README.md","rebar.lock","src","grisp",
26+
"Makefile"]},
27+
{exclude_files,["./grisp/.DS_Store"]},
28+
{build_tools,["rebar3"]}]}.

0 commit comments

Comments
 (0)