summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-11 13:31:06 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-11 13:31:06 -0700
commitcb2b9e24e0aba82b51b03d7945936861d38f727e (patch)
tree41cf68336c7cac2332661e76a2030b93e394477e
parent8951a8928ba5e6a40ab724578ed86c89e67a6593 (diff)
downloadrvi_core-cb2b9e24e0aba82b51b03d7945936861d38f727e.tar.gz
Bumped version to 0.3.1
-rw-r--r--Makefile2
-rw-r--r--RELEASE.md4
-rw-r--r--packaging/README.md2
-rwxr-xr-xpackaging/rvi.spec7
-rw-r--r--python/rvilib.py2
-rw-r--r--rel/reltool.config2
-rwxr-xr-xscripts/rvi6
-rw-r--r--scripts/rvi.service10
-rw-r--r--src/rvi.app.src2
9 files changed, 20 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index f8ccb2c..a7de611 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@
.PHONY: all deps compile clean rpm rpmclean
-VERSION=0.3.0
+VERSION=0.3.1
all: deps compile
diff --git a/RELEASE.md b/RELEASE.md
index d552e24..fb77861 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -51,3 +51,7 @@ Big data demo moved to its own repo at https://github.com/PDXostc/rvi_bigdata
* <b>SOTA demo moved</b><br>
SOTA demo moved to its own repo at https://github.com/PDXostc/rvi_sota_demo
+# v0.3.1 #
+
+* <b>Don't send service availablity notifications over websockets</b><br>
+ For unknown reasons this crashes the RVI node intermittently
diff --git a/packaging/README.md b/packaging/README.md
index ab7240c..bb20296 100644
--- a/packaging/README.md
+++ b/packaging/README.md
@@ -102,7 +102,7 @@ Go to the top directory of RVI and execute:
An RPM file will be generated at the end of the build which can be
installed on a Tizen box. The RPM can be found at:
- ~/GBS-ROOT/local/repos/tizen/i586/RPMS/rvi-0.3.0-1.i686.rpm
+ ~/GBS-ROOT/local/repos/tizen/i586/RPMS/rvi-0.3.1-1.i686.rpm
diff --git a/packaging/rvi.spec b/packaging/rvi.spec
index 4066443..94bd8cf 100755
--- a/packaging/rvi.spec
+++ b/packaging/rvi.spec
@@ -1,10 +1,10 @@
Summary: Remote Vehicle Interaction Node, running on top of Erlang,
Name: rvi
-Version: 0.3.0
+Version: 0.3.1
Release: 1
Group: App Framework/Application Communication
License: Mozilla Public License 2.0
-Source: http://content.linuxfoundation.org/auto/downloads/rvi/rvi-0.3.0.tgz
+Source: http://content.linuxfoundation.org/auto/downloads/rvi/rvi-0.3.1.tgz
BuildRequires: make
BuildRequires: glib2-devel
@@ -50,5 +50,4 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
/usr/lib/systemd/system/rvi.service
/etc/systemd/system/multi-user.target.wants/rvi.service
-/opt/rvi-0.3.0
-
+/opt/rvi-0.3.1
diff --git a/python/rvilib.py b/python/rvilib.py
index ba43bf9..526d928 100644
--- a/python/rvilib.py
+++ b/python/rvilib.py
@@ -5,7 +5,7 @@
# Mozilla Public License, version 2.0. The full text of the
# Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
#
-# rbilib.py 0.3.0
+# rbilib.py 0.3.1
#
# This moduke
from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCServer
diff --git a/rel/reltool.config b/rel/reltool.config
index 27df17e..8de4fcb 100644
--- a/rel/reltool.config
+++ b/rel/reltool.config
@@ -4,7 +4,7 @@
{lib_dirs, ["../deps/", "../components/"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
- {rel, "rvi", "0.3.0",
+ {rel, "rvi", "0.3.1",
[
kernel,
stdlib,
diff --git a/scripts/rvi b/scripts/rvi
index a1a57a4..ee4530f 100755
--- a/scripts/rvi
+++ b/scripts/rvi
@@ -18,7 +18,7 @@ set -e
case "$1" in
start)
log_daemon_msg "Starting Remote Vehicle Interaction Node..." "rvi"
- if /opt/rvi-0.3.0/bin/rvi start; then
+ if /opt/rvi-0.3.1/bin/rvi start; then
log_end_msg 0
else
log_end_msg 1
@@ -26,7 +26,7 @@ case "$1" in
;;
stop)
log_daemon_msg "Stopping Remote Vehicle Interaction Node..." "rvi"
- if /opt/rvi-0.3.0/bin/rvi stop; then
+ if /opt/rvi-0.3.1/bin/rvi stop; then
log_end_msg 0
else
log_end_msg 1
@@ -34,7 +34,7 @@ case "$1" in
;;
restart)
log_daemon_msg "Restarting Remote Vehicle Interaction Node..." "rvi"
- if /opt/rvi-0.3.0/bin/rvi restart; then
+ if /opt/rvi-0.3.1/bin/rvi restart; then
log_end_msg 0
else
log_end_msg 1
diff --git a/scripts/rvi.service b/scripts/rvi.service
index a9124a7..33905e3 100644
--- a/scripts/rvi.service
+++ b/scripts/rvi.service
@@ -4,14 +4,14 @@ Description=Remote Vehicle Interaction Service
Wants=network-online.target
[Service]
-Environment="HOME=/opt/rvi-0.3.0"
+Environment="HOME=/opt/rvi-0.3.1"
Type=forking
StandardOutput=journal
StandardError=journal
-ExecStartPre=/opt/rvi-0.3.0/erts-5.10.4/bin/epmd -daemon
-ExecStart=/bin/sh /opt/rvi-0.3.0/bin/rvi start
-ExecStop=/bin/sh /opt/rvi-0.3.0/bin/rvi stop
-ExecStopPost=/opt/rvi-0.3.0/erts-5.10.4/bin/epmd -kill
+ExecStartPre=/opt/rvi-0.3.1/erts-5.10.4/bin/epmd -daemon
+ExecStart=/bin/sh /opt/rvi-0.3.1/bin/rvi start
+ExecStop=/bin/sh /opt/rvi-0.3.1/bin/rvi stop
+ExecStopPost=/opt/rvi-0.3.1/erts-5.10.4/bin/epmd -kill
GuessMainPID=yes
[Install]
diff --git a/src/rvi.app.src b/src/rvi.app.src
index 2820860..937d571 100644
--- a/src/rvi.app.src
+++ b/src/rvi.app.src
@@ -11,7 +11,7 @@
{application, rvi,
[
{description, ""},
- {vsn, "0.3.0"},
+ {vsn, "0.3.1"},
{registered, []},
{applications, [
kernel,