summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2012-12-03 18:43:17 +1100
committerAlex Gorrod <alexg@wiredtiger.com>2012-12-03 18:43:17 +1100
commit76665c40922cc1483e5e3bdefa9beda3d7865bb8 (patch)
tree83c096719e34756e2c63746d371bb8ba837a0a99
parent450b43cd032601b7207629de334e674dfdd62203 (diff)
downloadmongo-76665c40922cc1483e5e3bdefa9beda3d7865bb8.tar.gz
Cut release 1.4.01.4.0
-rw-r--r--NEWS34
-rw-r--r--README4
-rw-r--r--RELEASE4
-rw-r--r--build_posix/aclocal/version-set.m48
-rw-r--r--build_posix/aclocal/version.m42
-rw-r--r--src/docs/top/main.dox4
6 files changed, 45 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index 4d46f9356d4..7c24dec8172 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,37 @@
+WiredTiger release 1.4.0, 2012-12-03
+------------------------------------
+
+This release adds several major new features, a number of performance
+improvements and bug fixes. The significant changes are outlined below:
+
+New features and API changes:
+
+[242] Track the percentage of cache that is dirty, trigger eviction to bound
+ it. This can be used to bound much data checkpoints write.
+
+[324] Add support for WT_COMPRESS::compress_raw, which lets the compression
+ routine select how many rows are included in each disk block.
+
+[381] Add statistics to track read and write amplification (application data
+ size versus I/O size)
+
+* Add a trigger configuration option to WT_SESSION::compact API.
+
+* Make WT_SESSION::create's checksum configuration 3-state: on, off, or
+ uncompressed blocks only.
+
+Bug fixes:
+
+* Fix build issues on Solaris.
+
+* Fix a bug calculating the generation of an LSM merge.
+
+* Fix WiredTiger dump and load for tables.
+
+* Fix a memory leak in checkpoints.
+
+* Improve accuracy of cache memory tracking with overflow items.
+
WiredTiger release 1.3.8, 2012-11-22
------------------------------------
diff --git a/README b/README
index ab44b040c4b..61f922cb607 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-WiredTiger 1.3.8: (November 22, 2012)
+WiredTiger 1.4.0: (December 3, 2012)
-This is version 1.3.8 of WiredTiger.
+This is version 1.4.0 of WiredTiger.
WiredTiger documentation can be found at:
diff --git a/RELEASE b/RELEASE
index bedc1e3edcd..c73e251dc13 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,6 +1,6 @@
WIREDTIGER_VERSION_MAJOR=1
-WIREDTIGER_VERSION_MINOR=3
-WIREDTIGER_VERSION_PATCH=8
+WIREDTIGER_VERSION_MINOR=4
+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 6e09827b33f..cc7dd0ba3e7 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=1
-VERSION_MINOR=3
-VERSION_PATCH=8
-VERSION_STRING='"WiredTiger 1.3.8: (November 22, 2012)"'
+VERSION_MINOR=4
+VERSION_PATCH=0
+VERSION_STRING='"WiredTiger 1.4.0: (December 3, 2012)"'
AC_SUBST(VERSION_MAJOR)
AC_SUBST(VERSION_MINOR)
AC_SUBST(VERSION_PATCH)
AC_SUBST(VERSION_STRING)
-VERSION_NOPATCH=1.3
+VERSION_NOPATCH=1.4
AC_SUBST(VERSION_NOPATCH)
diff --git a/build_posix/aclocal/version.m4 b/build_posix/aclocal/version.m4
index b825142c170..5f243bbb8cc 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.8
+1.4.0
diff --git a/src/docs/top/main.dox b/src/docs/top/main.dox
index f7d897857f0..a10905d2686 100644
--- a/src/docs/top/main.dox
+++ b/src/docs/top/main.dox
@@ -13,9 +13,9 @@ To ask questions or discuss issues related to using WiredTiger, visit our
View the documentation online:
-- <a href="1.3.8/index.html"><b>WiredTiger 1.3.8 (current release)</b></a>
+- <a href="1.4.0/index.html"><b>WiredTiger 1.4.0 (current release)</b></a>
+- <a href="1.3.8/index.html"><b>WiredTiger 1.3.8</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>
- <a href="develop/index.html"><b>WiredTiger develop branch (unstable)</b></a>
*/