summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2015-11-19 17:08:44 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2015-11-19 17:08:44 +1100
commit6ea78d92d10d1b1a801b51ae9c3b5356aa6f040a (patch)
tree3a8da43a49664118c956b38be67022c19edb50a8
parent16c0a1abe283eb921dd670d64dd7f1520675205f (diff)
parentc9b555ec94bf031c09eccc5bf6703de8f89cd9fe (diff)
downloadmongo-6ea78d92d10d1b1a801b51ae9c3b5356aa6f040a.tar.gz
Merge pull request #2318 from wiredtiger/version-2.7.0
Bump the WiredTiger version to 2.7.0 in preparation for a new release.
-rw-r--r--README6
-rw-r--r--RELEASE_INFO4
-rw-r--r--build_posix/aclocal/version-set.m48
-rw-r--r--build_posix/aclocal/version.m42
-rw-r--r--dist/package/wiredtiger.spec2
-rw-r--r--src/docs/upgrading.dox4
6 files changed, 13 insertions, 13 deletions
diff --git a/README b/README
index c30b210029d..5056431c95b 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-WiredTiger 2.6.2: (June 4, 2015)
+WiredTiger 2.7.0: (November 19, 2015)
-This is version 2.6.2 of WiredTiger.
+This is version 2.7.0 of WiredTiger.
WiredTiger release packages and documentation can be found at:
@@ -8,7 +8,7 @@ WiredTiger release packages and documentation can be found at:
The documentation for this specific release can be found at:
- http://source.wiredtiger.com/2.6.2/index.html
+ http://source.wiredtiger.com/2.7.0/index.html
The WiredTiger source code can be found at:
diff --git a/RELEASE_INFO b/RELEASE_INFO
index a178c2e40fb..1204e262af2 100644
--- a/RELEASE_INFO
+++ b/RELEASE_INFO
@@ -1,6 +1,6 @@
WIREDTIGER_VERSION_MAJOR=2
-WIREDTIGER_VERSION_MINOR=6
-WIREDTIGER_VERSION_PATCH=2
+WIREDTIGER_VERSION_MINOR=7
+WIREDTIGER_VERSION_PATCH=0
WIREDTIGER_VERSION="$WIREDTIGER_VERSION_MAJOR.$WIREDTIGER_VERSION_MINOR.$WIREDTIGER_VERSION_PATCH"
WIREDTIGER_RELEASE_DATE=`date "+%B %e, %Y"`
diff --git a/build_posix/aclocal/version-set.m4 b/build_posix/aclocal/version-set.m4
index cec54f5e842..c8b89b7842b 100644
--- a/build_posix/aclocal/version-set.m4
+++ b/build_posix/aclocal/version-set.m4
@@ -1,14 +1,14 @@
dnl build by dist/s_version
VERSION_MAJOR=2
-VERSION_MINOR=6
-VERSION_PATCH=2
-VERSION_STRING='"WiredTiger 2.6.2: (June 4, 2015)"'
+VERSION_MINOR=7
+VERSION_PATCH=0
+VERSION_STRING='"WiredTiger 2.7.0: (November 19, 2015)"'
AC_SUBST(VERSION_MAJOR)
AC_SUBST(VERSION_MINOR)
AC_SUBST(VERSION_PATCH)
AC_SUBST(VERSION_STRING)
-VERSION_NOPATCH=2.6
+VERSION_NOPATCH=2.7
AC_SUBST(VERSION_NOPATCH)
diff --git a/build_posix/aclocal/version.m4 b/build_posix/aclocal/version.m4
index 4a4f3427df7..2ebe4516695 100644
--- a/build_posix/aclocal/version.m4
+++ b/build_posix/aclocal/version.m4
@@ -1,2 +1,2 @@
dnl WiredTiger product version for AC_INIT. Maintained by dist/s_version
-2.6.2
+2.7.0
diff --git a/dist/package/wiredtiger.spec b/dist/package/wiredtiger.spec
index 722bb5d946e..6c7d6b9bc41 100644
--- a/dist/package/wiredtiger.spec
+++ b/dist/package/wiredtiger.spec
@@ -1,5 +1,5 @@
Name: wiredtiger
-Version: 2.6.2
+Version: 2.7.0
Release: 1%{?dist}
Summary: WiredTiger data storage engine
diff --git a/src/docs/upgrading.dox b/src/docs/upgrading.dox
index c40e764e2f6..34f391b27f1 100644
--- a/src/docs/upgrading.dox
+++ b/src/docs/upgrading.dox
@@ -1,6 +1,6 @@
/*! @page upgrading Upgrading WiredTiger applications
-@section version_262 Upgrading to Version 2.6.2
+@section version_270 Upgrading to Version 2.7.0
<dl>
<dt>Change to config_base=false</dt>
@@ -26,7 +26,7 @@ WT_CURSOR::insert continued to reference application-memory specified to
either WT_CURSOR::set_key or WT_CURSOR::set_value after a successful return,
which could potentially lead to a core dump if the application freed that
memory before a subsequent call to a WT_CURSOR:: method without an intermediate
-WT_CURSOR::set_key or WT_CURSOR::set_value call. In the 2.6.2 release,
+WT_CURSOR::set_key or WT_CURSOR::set_value call. In the 2.7.0 release,
WT_CURSOR::insert behaves like the other cursor methods and does not reference
application memory after a successful return. Applications depending on the
previous semantic will require modifications to set the cursor's key and/or