Merge Debian packaging for release “1:0.12.2-2”.
[debian_python-lockfile.git] / RELEASE-NOTES
blob8b452ed1ec9ca63f5b07108ab62f599239e7540b
1 Version 0.9.1
2 =============
4 * This release moves the source location to Google Code.
6 * Threaded support is currently broken.  (It might not actually be broken.
7   It might just be the tests which are broken.)
9 Version 0.9
10 ===========
12 * The lockfile module was reorganized into a package.
14 * The names of the three main classes have changed as follows:
16     LinkFileLock -> LinkLockFile
17     MkdirFileLock -> MkdirLockFile
18     SQLiteFileLock -> SQLiteLockFile
20 * A PIDLockFile class was added.
22 Version 0.3
23 ===========
25 * Fix 2.4.diff file error.
27 * More documentation updates.
29 Version 0.2
30 ===========
32 * Added 2.4.diff file to patch lockfile to work with Python 2.4 (removes use
33   of with statement).
35 * Renamed _FileLock base class to LockBase to expose it (and its docstrings)
36   to pydoc.
38 * Got rid of time.sleep() calls in tests (thanks to Konstantin
39   Veretennicov).
41 * Use thread.get_ident() as the thread discriminator.
43 * Updated documentation a bit.
45 * Added RELEASE-NOTES.
47 Version 0.1
48 ===========
50 * First release - All basic functionality there.