~cbehrens/nova/lp844160-build-works-with-zones

« back to all changes in this revision

Viewing changes to vendor/lockfile/RELEASE-NOTES

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Version 0.9
 
2
===========
 
3
 
 
4
* The lockfile module was reorganized into a package.
 
5
 
 
6
* The names of the three main classes have changed as follows:
 
7
 
 
8
    LinkFileLock -> LinkLockFile
 
9
    MkdirFileLock -> MkdirLockFile
 
10
    SQLiteFileLock -> SQLiteLockFile
 
11
 
 
12
* A PIDLockFile class was added.
 
13
 
 
14
Version 0.3
 
15
===========
 
16
 
 
17
* Fix 2.4.diff file error.
 
18
 
 
19
* More documentation updates.
 
20
 
 
21
Version 0.2
 
22
===========
 
23
 
 
24
* Added 2.4.diff file to patch lockfile to work with Python 2.4 (removes use
 
25
  of with statement).
 
26
 
 
27
* Renamed _FileLock base class to LockBase to expose it (and its docstrings)
 
28
  to pydoc.
 
29
 
 
30
* Got rid of time.sleep() calls in tests (thanks to Konstantin
 
31
  Veretennicov).
 
32
 
 
33
* Use thread.get_ident() as the thread discriminator.
 
34
 
 
35
* Updated documentation a bit.
 
36
 
 
37
* Added RELEASE-NOTES.
 
38
 
 
39
Version 0.1
 
40
===========
 
41
 
 
42
* First release - All basic functionality there.