summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS28
-rw-r--r--README4
-rw-r--r--build_posix/aclocal/version-set.m48
-rw-r--r--build_posix/aclocal/version.m42
-rw-r--r--dist/RELEASE4
-rw-r--r--src/docs/top/main.dox3
6 files changed, 39 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index ba9e055a1a0..dddee97e890 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,31 @@
+WiredTiger release 1.2.0, 2012-06-04
+------------------------------------
+
+This release contains many bugfixes and improvements. The major changes are:
+
+[#138] Add support for transactions with coarse-grained durability.
+ Transactions provide atomicity guarantees and rollback, and uncommitted
+ changes are never written to disk. There is no on-disk log, so
+ committed changes only become durable when the next checkpoint
+ completes. Checkpoints are implemented by creating
+ transactionally-consistent snapshots within data files.
+
+[#156] Fully support operations that make schema changes with multiple
+ sessions open concurrently.
+
+[#159] Disable internal page key suffix compression if a custom collator is
+ configured. This avoids issues with collators that require complete
+ keys.
+
+[#167] Add support for durable snapshots within files. While a snapshot is
+ active, the pages used by the snapshot will not be overwritten. If a
+ file is accessed after a crash or application exit without calling
+ WT_CONNECTION::close, any changes made after the last snapshot will be
+ silently ignored.
+
+[#214, #216]
+ Fixes for forcing eviction with small caches.
+
WiredTiger release 1.1.5, 2012-04-26
------------------------------------
diff --git a/README b/README
index 1c71d43b2d6..16153cf0ef6 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
-WiredTiger 1.1.5: (April 26, 2012)
+WiredTiger 1.2.0: (June 4, 2012)
-This is version 1.1.5 of WiredTiger.
+This is version 1.2.0 of WiredTiger.
WiredTiger documentation can be found at:
diff --git a/build_posix/aclocal/version-set.m4 b/build_posix/aclocal/version-set.m4
index 244bffeae24..9750cf1547a 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=1
-VERSION_PATCH=5
-VERSION_STRING='"WiredTiger 1.1.5: (April 26, 2012)"'
+VERSION_MINOR=2
+VERSION_PATCH=0
+VERSION_STRING='"WiredTiger 1.2.0: (June 4, 2012)"'
AC_SUBST(VERSION_MAJOR)
AC_SUBST(VERSION_MINOR)
AC_SUBST(VERSION_PATCH)
AC_SUBST(VERSION_STRING)
-VERSION_NOPATCH=1.1
+VERSION_NOPATCH=1.2
AC_SUBST(VERSION_NOPATCH)
diff --git a/build_posix/aclocal/version.m4 b/build_posix/aclocal/version.m4
index 8d740efe7df..f81807a73e2 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.1.5
+1.2.0
diff --git a/dist/RELEASE b/dist/RELEASE
index 1e790a96ccc..724eb3f7763 100644
--- a/dist/RELEASE
+++ b/dist/RELEASE
@@ -1,6 +1,6 @@
WIREDTIGER_VERSION_MAJOR=1
-WIREDTIGER_VERSION_MINOR=1
-WIREDTIGER_VERSION_PATCH=5
+WIREDTIGER_VERSION_MINOR=2
+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/src/docs/top/main.dox b/src/docs/top/main.dox
index c5316198021..d7294dc0bd9 100644
--- a/src/docs/top/main.dox
+++ b/src/docs/top/main.dox
@@ -13,5 +13,6 @@ To ask questions or discuss issues related to using WiredTiger, visit our
View the documentation online:
-- <a href="1.1.5/index.html"><b>WiredTiger 1.1.5 documentation (current)</b></a>
+- <a href="1.2.0/index.html"><b>WiredTiger 1.2.0 documentation (current)</b></a>
+- <a href="1.1.5/index.html"><b>WiredTiger 1.1.5 documentation</b></a>
*/