Skip to content

Commit 9eaf9f4

Browse files
committed
vsn bump
1 parent c6f6006 commit 9eaf9f4

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

Makefile

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CFG_DIR = $(CURDIR)/config
44
GRISP_FILES_DIR = $(CURDIR)/grisp/grisp_base/files
55
TOOLS_DIR = $(CURDIR)/tools
6-
HOST_REBAR := $(shell command which rebar3)
6+
HOST_REBAR = rebar3
77
REBAR = $(TOOLS_DIR)/rebar3
88
# LIB_CACHE_DIR = $(LOCAL_REBAR_DIR)/lib/*/ebin
99
# PLUGIN_CACHE_DIR = $(LOCAL_REBAR_DIR)/plguins/*/ebin
@@ -44,10 +44,6 @@ ifndef ERL
4444
$(error Could not find Erlang/OTP ('erl' command) installed on this system.)
4545
endif
4646

47-
ifndef HOST_REBAR
48-
$(error Could not find Rebar3 ('rebar3' command) installed on this system.)
49-
endif
50-
5147

5248
.PHONY: all compile checkrebar3 shell erlshell docs test dialyzer cover release package tar clean relclean push upbar addemu deploy cacheclean build upgrade tree
5349

@@ -170,9 +166,9 @@ release: compile
170166
package: release
171167
$(PRE) tar -zcvf $(RELEASE_NAME).tar.gz $(CURDIR)/$(RELEASE_NAME) $(POST)
172168

173-
upbar:
174-
@ echo Overwriting rebar3 with locally cached version
175-
cp $(LOCAL_REBAR) $(TOOLS_DIR)
169+
# upbar:
170+
# @ echo Overwriting rebar3 with locally cached version
171+
# cp $(LOCAL_REBAR) $(TOOLS_DIR)
176172

177173
tar:
178174
$(PRE) (rm -rf ./achlys.tar.gz) && (find ./ -type f > ../.achlys_archive) && (tar -zcvf achlys.tar.gz -T - < ../.achlys_archive) && rm -rf ../.achlys_archive $(POST)

VERSION

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

rebar.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
{ relx , [
6565
%%------------------------------------------------------------------------------
66-
{release , {achlys , "0.3.1"} , [
66+
{release , {achlys , "0.3.2"} , [
6767
grisp ,
6868
{epmd , none} ,
6969
partisan ,
@@ -90,9 +90,9 @@
9090
debug_info
9191
]} ,
9292
{relx , [
93-
{sys_config , "./config/test.config"} ,
94-
% {sys_config_src , "./config/test.config.src"} ,
95-
{release , {achlys , "0.3.1"} , [
93+
% {sys_config , "./config/test.config"} ,
94+
{sys_config_src , "./config/test.config.src"} ,
95+
{release , {achlys , "0.3.2"} , [
9696
grisp ,
9797
{epmd , none} ,
9898
partisan ,

src/achlys.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ application , achlys , [
22
{description , "A framework for applications using Lasp
33
on GRiSP embedded systems at the edge"} ,
4-
{vsn , "0.3.1"} ,
4+
{vsn , "0.3.2"} ,
55

66
{registered , [achlys
77
, achlys_app

0 commit comments

Comments
 (0)