Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.03 KB

CHANGES.rst

File metadata and controls

50 lines (32 loc) · 1.03 KB

Release notes

This release has no new features or changes in the user-facing API; two internal functions are moved:

  • json_lines._lib._maybe_gzip_open is renamed to json_lines.utils.maybe_gzip_open;
  • json_lines._lib._path_to_str is renamed to json_lines.utils.path_to_str.
  • Backwards incompatible: json_lines.open_file is made private and renamed to json_lines._lib._maybe_gzip_open;
  • json_lines.open now supports pathlib.Path objects;
  • docstrings are added to more functions;
  • logging now uses "json_lines" logger;
  • logging no longer uses string formatting;
  • Python 3.7 support.
  • README fixed
  • Resume reading after error for plain and compressed files (#2)
  • json_lines.open added, open_file removed from docs

Initial release