From 585ce623c52feb4edfc8ce6746d94d304cb8246f Mon Sep 17 00:00:00 2001 From: Caoyuan Deng Date: Fri, 12 Jul 2019 14:09:58 -0700 Subject: [PATCH] Version 0.2.1-beta --- README.md | 1 - khipu-eth/src/main/resources/application.conf | 4 ++-- khipu-eth/src/universal/conf/dev.conf | 4 ++-- project/Build.scala | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e03ee97..1159bc7 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,6 @@ During fast sync, sometimes the syncing looks like stopped with no more state no ### Minimum requirements to run Khipu - 16G RAM, 500G disk space (SSD is preferred, although HDD is okay) - - Under regular sync mode, if you restart Khipu, it may take 1 minutes (SSD), or 8 to 15 minutes (HDD) to load the storage indexes ### Installation and Running, Building diff --git a/khipu-eth/src/main/resources/application.conf b/khipu-eth/src/main/resources/application.conf index 7ad8aee..40d06d4 100644 --- a/khipu-eth/src/main/resources/application.conf +++ b/khipu-eth/src/main/resources/application.conf @@ -3,10 +3,10 @@ khipu { chain-type = "eth" # Identifier used when connecting to other clients - client-id = "Khipu/v0.1.0-alpha" + client-id = "Khipu/v0.2.1-beta" # Version string (reported by an RPC method) - client-version = "khipu/v0.1" + client-version = "khipu/v0.2" # Base directory where all the data used by the node is stored, including blockchain data and private keys datadir = ${user.home}"/.khipu" diff --git a/khipu-eth/src/universal/conf/dev.conf b/khipu-eth/src/universal/conf/dev.conf index 7ad8aee..40d06d4 100644 --- a/khipu-eth/src/universal/conf/dev.conf +++ b/khipu-eth/src/universal/conf/dev.conf @@ -3,10 +3,10 @@ khipu { chain-type = "eth" # Identifier used when connecting to other clients - client-id = "Khipu/v0.1.0-alpha" + client-id = "Khipu/v0.2.1-beta" # Version string (reported by an RPC method) - client-version = "khipu/v0.1" + client-version = "khipu/v0.2" # Base directory where all the data used by the node is stored, including blockchain data and private keys datadir = ${user.home}"/.khipu" diff --git a/project/Build.scala b/project/Build.scala index 201b197..1a32efe 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -71,7 +71,7 @@ object Build extends sbt.Build { lazy val basicSettings = Defaults.coreDefaultSettings ++ Seq( organization := "khipu.io", - version := "0.2.0-beta", + version := "0.2.1-beta", resolvers ++= Seq( "Local Maven" at Path.userHome.asURL + ".m2/repository", "Typesafe repo" at "http://repo.typesafe.com/typesafe/releases/",