Skip to content

Commit

Permalink
F #4089: increase DB version (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian González authored and rsmontero committed Oct 6, 2020
1 parent b328e37 commit 2d00725
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions include/Nebula.h
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class Nebula
*/
static std::string shared_db_version()
{
return "5.12.0";
return "6.0.0";
}

/**
Expand All @@ -412,7 +412,7 @@ class Nebula
*/
static std::string local_db_version()
{
return "5.12.0";
return "6.0.0";
}

/**
Expand Down
4 changes: 2 additions & 2 deletions include/NebulaService.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class NebulaService
*/
static std::string shared_db_version()
{
return "5.12.0";
return "6.0.0";
}

/**
Expand All @@ -158,7 +158,7 @@ class NebulaService
*/
static std::string local_db_version()
{
return "5.12.0";
return "6.0.0";
}

// -----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/onedb/database_schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class OneDBBacKEnd
}
}

LATEST_DB_VERSION = "5.12.0"
LATEST_DB_VERSION = "6.0.0"

def get_schema(type, version = nil)
if !version
Expand Down
4 changes: 2 additions & 2 deletions src/onedb/fsck.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
require 'fsck/quotas'

module OneDBFsck
VERSION = "5.12.0"
LOCAL_VERSION = "5.12.0"
VERSION = "6.0.0"
LOCAL_VERSION = "6.0.0"

def db_version
if defined?(@db_version) && @db_version
Expand Down

0 comments on commit 2d00725

Please sign in to comment.