Skip to content
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.

Commit

Permalink
Preparing for 2.0 with breaking protocol change
Browse files Browse the repository at this point in the history
  • Loading branch information
izolyomi committed Feb 6, 2018
1 parent b0d3fc8 commit fa1d3a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package/locnet/pack-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ sudo checkinstall \
--pkglicense=GPLv3 \
--pkggroup=net \
--pkgname=iop-locnet \
--pkgversion=1.2.0-b1 \
--pkgversion=2.0.0-a1 \
--pkgarch=$(dpkg --print-architecture) \
$@
6 changes: 3 additions & 3 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ namespace LocNet
{


static const uint16_t VERSION_MAJOR = 1;
static const uint16_t VERSION_MINOR = 1;
static const uint16_t VERSION_MAJOR = 2;
static const uint16_t VERSION_MINOR = 0;
static const uint16_t VERSION_PATCH = 0;
static const string RELEASE_STATE = "beta";
static const string RELEASE_STATE = "a1";

static const string LOCNET_VERSION = to_string(VERSION_MAJOR) + "." +
to_string(VERSION_MINOR) + "." + to_string(VERSION_PATCH) + "-" + RELEASE_STATE;
Expand Down

0 comments on commit fa1d3a6

Please sign in to comment.