Skip to content

Commit

Permalink
Bump library and rpc minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
metalicjames committed Oct 29, 2018
1 parent 43bb94c commit 40b0d02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/client/rpcserver.cpp
Expand Up @@ -43,7 +43,7 @@ void CryptoServer::setWallet(CryptoKernel::Wallet* Wallet,
Json::Value CryptoServer::getinfo() {
Json::Value returning;

returning["rpc_version"] = "0.0.2";
returning["rpc_version"] = "0.1.0";
returning["ck_version"] = version;

std::stringstream buffer;
Expand Down Expand Up @@ -397,4 +397,4 @@ std::string CryptoServer::signmessage(const std::string& message,
} else {
return noWalletError;
}
}
}
2 changes: 1 addition & 1 deletion src/kernel/version.h
Expand Up @@ -20,6 +20,6 @@

#include <string>

const std::string version = "0.1.1-alpha";
const std::string version = "0.2.0-alpha-rc1";

#endif // VERSION_H_INCLUDED

0 comments on commit 40b0d02

Please sign in to comment.