summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS20
-rw-r--r--README4
-rw-r--r--RELEASE2
-rw-r--r--build_posix/aclocal/version-set.m44
-rw-r--r--build_posix/aclocal/version.m42
-rw-r--r--src/docs/top/main.dox2
6 files changed, 27 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 9b5f79581e6..a180404a961 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+WiredTiger release 1.3.7, 2012-11-09
+------------------------------------
+
+This release fixes a bug and improves performance with Bloom filters:
+
+* Drop any old Bloom filter before creating a new one -- we may have been
+ interrupted in between creating it and updating the metadata. Write the
+ metadata after creating missing Bloom filters.
+
+* Use a separate thread for creation of Bloom filters for the newest,
+ unmerged LSM chunks.
+
+* Changes to the ex_test_perf example: change the default configuration to
+ 4KB pages and disable prefix compression. Change the "-i" command line
+ option to be a simple count of records to insert. Clean up error
+ handling and add option to populate using multiple threads.
+
+* Clarify the docs for the default buffer_alignment setting.
+
+
WiredTiger release 1.3.6, 2012-11-06
------------------------------------
diff --git a/README b/README
index 110b405efc4..0b5e2ff6aa5 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-WiredTiger 1.3.6: (November 6, 2012)
+WiredTiger 1.3.7: (November 9, 2012)
-This is version 1.3.6 of WiredTiger.
+This is version 1.3.7 of WiredTiger.
WiredTiger documentation can be found at:
diff --git a/RELEASE b/RELEASE
index 183bd431ff5..7de18522610 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,6 +1,6 @@
WIREDTIGER_VERSION_MAJOR=1
WIREDTIGER_VERSION_MINOR=3
-WIREDTIGER_VERSION_PATCH=6
+WIREDTIGER_VERSION_PATCH=7
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 23d901d16ac..c8401b642b2 100644
--- a/build_posix/aclocal/version-set.m4
+++ b/build_posix/aclocal/version-set.m4
@@ -2,8 +2,8 @@ dnl build by dist/s_version
VERSION_MAJOR=1
VERSION_MINOR=3
-VERSION_PATCH=6
-VERSION_STRING='"WiredTiger 1.3.6: (November 6, 2012)"'
+VERSION_PATCH=7
+VERSION_STRING='"WiredTiger 1.3.7: (November 9, 2012)"'
AC_SUBST(VERSION_MAJOR)
AC_SUBST(VERSION_MINOR)
diff --git a/build_posix/aclocal/version.m4 b/build_posix/aclocal/version.m4
index f246c8eed32..8eae311c9e8 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
-1.3.6
+1.3.7
diff --git a/src/docs/top/main.dox b/src/docs/top/main.dox
index e8ad041e1e4..8f523d669fe 100644
--- a/src/docs/top/main.dox
+++ b/src/docs/top/main.dox
@@ -13,7 +13,7 @@ To ask questions or discuss issues related to using WiredTiger, visit our
View the documentation online:
-- <a href="1.3.6/index.html"><b>WiredTiger 1.3.6 (current release)</b></a>
+- <a href="1.3.7/index.html"><b>WiredTiger 1.3.7 (current release)</b></a>
- <a href="1.2.2/index.html"><b>WiredTiger 1.2.2</b></a>
- <a href="1.1.5/index.html"><b>WiredTiger 1.1.5</b></a>