Skip to content

0.3.4

Pre-release
Pre-release
Compare
Choose a tag to compare
@oschwald oschwald released this 27 Aug 19:30
· 557 commits to main since this release
  • Previously the Reader would hold onto the underlying file and FileChannel,
    not closing them until the Reader was closed. This was unnecessary; they
    are now closed immediately after they are used. Fix by Andrew Snare; GitHub
    issue #7.
  • The Reader now discards the reference to the underlying buffer when
    close() is called. This is done to help ensure that the buffer is garbage
    collected sooner, which may mitigate file locking issues that some users
    have experienced on Windows when updating the database. Patch by Andrew
    Snare; GitHub issue #8.