Skip to content

Releases: pauldmccarthy/indexed_gzip

0.8.8

22 Nov 21:16
16554e6
Compare
Choose a tag to compare
0.8.8 Pre-release
Pre-release

Changes in this release:

  • Fixed bug affecting files which were an exact multiple of the read buffer
    size.

0.8.7

03 Aug 12:11
Compare
Choose a tag to compare
0.8.7 Pre-release
Pre-release

Changes in this release:

  • Internal changes to how file handles are managed, to improve Windows
    compatibility.
  • The _IndexedGzipFile.read method now acquires a single file handle, rather
    than opening/closing multiple handles across calls to zran_read.

0.8.6

27 Jun 07:27
Compare
Choose a tag to compare
0.8.6 Pre-release
Pre-release

Changes in this release:

  • Workaround for issues with Python 2.7 and Cython < 0.26 (#10).

0.8.5

16 Jun 15:04
Compare
Choose a tag to compare
0.8.5 Pre-release
Pre-release

Changes in this release:

  • Minor changes to packging.

0.8.4

11 Jun 13:06
Compare
Choose a tag to compare
0.8.4 Pre-release
Pre-release

Changes in this release:

  • Removed pytest-runner as a dependency.

0.8.3

11 Jun 11:52
Compare
Choose a tag to compare
0.8.3 Pre-release
Pre-release

Changes in this release:

  • Bugfix - variious methods and attributes were missing from the IndexedGzipFile wrapper class (#9).

0.8.2

30 Mar 11:19
Compare
Choose a tag to compare
0.8.2 Pre-release
Pre-release

Changes in this release:

  • Bugfix in deprecated SafeIndexedGzipFile.

0.8.1

24 Mar 22:53
Compare
Choose a tag to compare
0.8.1 Pre-release
Pre-release

Changes in this release:

  • Updated conda metadata.

0.8.0

24 Mar 22:27
Compare
Choose a tag to compare
0.8.0 Pre-release
Pre-release

Changes in this release:

  • Added ability to import/export the index, via new import_index and
    export_index methods on the IndexedGzipFile class (#7, #8) - thanks
    @ozars !
  • Deprecated SafeIndexedGzipFile - the IndexedGzipFile is now
    thread-safe, and has a read buffer. If you don't want buffering
    or thread-safety, use the _IndexedGzipFile class.
  • Fixed bug in seek method - was not working with negative offsets.
  • More unit tests, and code coverage of .py and .pyx files.

0.7.1

06 Mar 11:34
Compare
Choose a tag to compare
0.7.1 Pre-release
Pre-release

Changes in this release:

  • Added .conda/meta.yaml file for building conda packages