1
0
Fork 0

bumped built-in version number from 2.7.0-devel to 2.8

This commit is contained in:
jsteemann 2016-01-08 01:56:23 +01:00
parent 64c5b21074
commit 67147482ce
4 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ describe ArangoDB do
doc.code.should eq(200) doc.code.should eq(200)
compatibility = doc.parsed_response['compatibility'] compatibility = doc.parsed_response['compatibility']
compatibility.should be_kind_of(Integer) compatibility.should be_kind_of(Integer)
compatibility.should eq(20700) compatibility.should eq(20800)
end end
it "tests the compatibility value when a broken header is set" do it "tests the compatibility value when a broken header is set" do
@ -28,7 +28,7 @@ describe ArangoDB do
doc.code.should eq(200) doc.code.should eq(200)
compatibility = doc.parsed_response['compatibility'] compatibility = doc.parsed_response['compatibility']
compatibility.should be_kind_of(Integer) compatibility.should be_kind_of(Integer)
compatibility.should eq(20700) compatibility.should eq(20800)
end end
end end

View File

@ -1 +1 @@
#define TRI_VERSION "2.7.0-devel" #define TRI_VERSION "2.8.0-devel"

View File

@ -6,7 +6,7 @@ dnl ============================================================================
dnl --SECTION-- ArangoDB GmbH Build Environment dnl --SECTION-- ArangoDB GmbH Build Environment
dnl ============================================================================ 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` CURRENT_DIR=`pwd`

View File

@ -67,7 +67,7 @@ function DatabaseSuite () {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
testVersion : function () { testVersion : function () {
assertMatch(/(^2\.7)|(-devel$)/, internal.db._version()); assertMatch(/(^2\.[78])|(-devel$)/, internal.db._version());
}, },
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////