diff --git a/CHANGES b/CHANGES index 4c0c86776fbeb0b6f97a5487ec8480c8d62cadb7..327a6ce8464292b86397b5827ec0557d3c7fef87 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,7 @@ Change History ============== -1.4 (unreleased) +1.4 (2015-07-13) ---------------- This version comes with a change in the SQL tables format, to fix a potential @@ -35,6 +35,10 @@ bug. - Client could get stuck forever on unreadable cells when not connected to the master. + - Client could only instantiate NEOStorage from the main thread, and the + RTMIN+2 signal displayed logs for only 1 NEOStorage. Now, RTMIN+2 & RTMIN+3 + are setup when neo.client module is imported. + - Plus fixes and improvements to logging and debugging. 1.3 (2015-01-13) diff --git a/README b/README index bb74082c3cd5fa386b004fa3478af6360d505754..b774873242faa6e04767b99754c76d80204bb5a1 100644 --- a/README +++ b/README @@ -16,7 +16,7 @@ A NEO cluster is composed of the following types of nodes: Stores data, preserving history. All available storage nodes are in use simultaneously. This offers redundancy and data distribution. - Available backends: MySQL, SQLite + Available backends: MySQL (InnoDB or TokuDB), SQLite - "admin" nodes (mandatory for startup, optional after) diff --git a/setup.py b/setup.py index 9733df5ea9e3bead8ceb27c0d9ca8ba495d09053..8abd44c07fff4beb575ec7970b79cb6cb2a1be02 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ else: setup( name = 'neoppod', - version = '1.3', + version = '1.4.0', description = __doc__.strip(), author = 'NEOPPOD', author_email = 'neo-dev@erp5.org',