mirror of https://gitee.com/bigwinds/arangodb
bumped built-in version number from 2.7.0-devel to 2.8
This commit is contained in:
parent
64c5b21074
commit
67147482ce
|
@ -16,7 +16,7 @@ describe ArangoDB do
|
|||
doc.code.should eq(200)
|
||||
compatibility = doc.parsed_response['compatibility']
|
||||
compatibility.should be_kind_of(Integer)
|
||||
compatibility.should eq(20700)
|
||||
compatibility.should eq(20800)
|
||||
end
|
||||
|
||||
it "tests the compatibility value when a broken header is set" do
|
||||
|
@ -28,7 +28,7 @@ describe ArangoDB do
|
|||
doc.code.should eq(200)
|
||||
compatibility = doc.parsed_response['compatibility']
|
||||
compatibility.should be_kind_of(Integer)
|
||||
compatibility.should eq(20700)
|
||||
compatibility.should eq(20800)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ dnl ============================================================================
|
|||
dnl --SECTION-- ArangoDB GmbH Build Environment
|
||||
dnl ============================================================================
|
||||
|
||||
AC_INIT([ArangoDB GmbH], [2.7.0-devel], [info@arangodb.com], [arangodb], [https://www.arangodb.com])
|
||||
AC_INIT([ArangoDB GmbH], [2.8.0-devel], [info@arangodb.com], [arangodb], [https://www.arangodb.com])
|
||||
|
||||
CURRENT_DIR=`pwd`
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ function DatabaseSuite () {
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
testVersion : function () {
|
||||
assertMatch(/(^2\.7)|(-devel$)/, internal.db._version());
|
||||
assertMatch(/(^2\.[78])|(-devel$)/, internal.db._version());
|
||||
},
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue