Changelog

4.0.2

  • Updated to release as Pure Python Wheel rather than Universal Wheel (#62)

4.0.1

  • Switched back to the gitdb package name on PyPI and fixed the gitdb2 mirror package (#59)
  • Switched back to require smmap package and fixed version requirement to >= 3.0.1, < 4 (#59)
  • Updated smmap submodule

3.0.3.post1

  • Fixed changelogs for v3.0.2 and v3.0.3

3.0.3

  • Changed force_bytes to use UTF-8 encoding by default (#49)
  • Restricted smmap2 version requirement to < 3
  • Updated requirements.txt

3.0.2

  • Removed Python 2 compatibility shims (#56)

0.6.1

0.6.0

  • Added support got python 3.X
  • Removed all async dependencies and all *_async versions of methods with it.

0.5.4

  • Adjusted implementation to use the SlidingMemoryManager by default in python 2.6 for efficiency reasons. In Python 2.4, the StaticMemoryManager will be used instead.

0.5.3

  • Added support for smmap. SmartMMap allows resources to be managed and controlled. This brings the implementation closer to the way git handles memory maps, such that unused cached memory maps will automatically be freed once a resource limit is hit. The memory limit on 32 bit systems remains though as a sliding mmap implementation is not used for performance reasons.

0.5.2

  • Improved performance of the c implementation, which now uses reverse-delta-aggregation to make a memory bound operation CPU bound.

0.5.1

  • Restored most basic python 2.4 compatibility, such that gitdb can be imported within python 2.4, pack access cannot work though. This at least allows Super-Projects to provide their own workarounds, or use everything but pack support.

0.5.0

Initial Release