Skip to content

Commit 36cfee4

Browse files
Merge pull request #108 from Remmeauth/r-v0.5.2-alpha
R v0.5.2 alpha
2 parents cd5d0b8 + b681790 commit 36cfee4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5-
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5+
and this project adheres to
6+
7+
### [0.5.2-alpha] - 2018-09-27
8+
### Fixed
9+
- Several starting up issues
610

711
## [0.5.1-alpha] - 2018-09-13
812
### Changes

bash/validator.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ if [ "$REMME_START_MODE" = "genesis" ]; then
5757
sawadm genesis $GENESIS_BATCHES
5858
fi
5959

60-
if [ "$REMME_START_MODE" = "run" ]; then
60+
if [ "$REMME_START_MODE" = "run" ] && [ -s "/config/seeds-list.txt" ]; then
6161
SEEDS=$(sed ':a;N;$!ba;s/\n/,/g' /config/seeds-list.txt)
6262
ADDITIONAL_ARGS="$ADDITIONAL_ARGS --seeds $SEEDS --peers $SEEDS"
6363
fi

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='remme',
5-
version='0.6.0-alpha',
5+
version='0.5.2-alpha',
66
description='Distributed Public Key Infrastructure (PKI) protocol',
77
author='REMME',
88
url='https://remme.io',

0 commit comments

Comments
 (0)