RELEASE-NOTES 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Version 0.9.1
  2. =============
  3. * This release moves the source location to Google Code.
  4. * Threaded support is currently broken. (It might not actually be broken.
  5. It might just be the tests which are broken.)
  6. Version 0.9
  7. ===========
  8. * The lockfile module was reorganized into a package.
  9. * The names of the three main classes have changed as follows:
  10. LinkFileLock -> LinkLockFile
  11. MkdirFileLock -> MkdirLockFile
  12. SQLiteFileLock -> SQLiteLockFile
  13. * A PIDLockFile class was added.
  14. Version 0.3
  15. ===========
  16. * Fix 2.4.diff file error.
  17. * More documentation updates.
  18. Version 0.2
  19. ===========
  20. * Added 2.4.diff file to patch lockfile to work with Python 2.4 (removes use
  21. of with statement).
  22. * Renamed _FileLock base class to LockBase to expose it (and its docstrings)
  23. to pydoc.
  24. * Got rid of time.sleep() calls in tests (thanks to Konstantin
  25. Veretennicov).
  26. * Use thread.get_ident() as the thread discriminator.
  27. * Updated documentation a bit.
  28. * Added RELEASE-NOTES.
  29. Version 0.1
  30. ===========
  31. * First release - All basic functionality there.