Commit 798a1698 authored by Jim Fulton's avatar Jim Fulton

5.0.0b1

parent c9726cb5
......@@ -2,6 +2,26 @@
Change History
================
5.0.0b1 (2016-08-04)
====================
- fstail: print the txn offset and header size, instead of only the data offset.
fstail can now be used to truncate a DB at the right offset.
Numerous internal cleanups, including:
- Changed the way the root object was created. Now the root object is
created using a database connection, rather than by making low-level
storage calls.
- Drop support for the old commit protocol.
- Internal FileStorage-undo fixes that should allow undo in some cases
where it didn't work before.
- Drop the ``version`` argument to some methods where it was the last
argument and optional.
5.0.0a6 (2016-07-21)
====================
......@@ -56,7 +76,7 @@ Concurrency Control (MVCC) implementation:
This change allows server-nased storages like ZEO and NEO to be
implemented more simply and cleanly.
4.4.3 (unreleased)
4.4.3 (2016-08-04)
==================
- Internal FileStorage-undo fixes that should allow undo in some cases
......
......@@ -20,7 +20,7 @@ to application logic. ZODB includes features such as a plugable storage
interface, rich transaction support, and undo.
"""
version = "5.0.0a6"
version = "5.0.0b1"
import os
from setuptools import setup, find_packages
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment