Skip to content

Latest commit

 

History

History
125 lines (77 loc) · 4.1 KB

CHANGELOG.md

File metadata and controls

125 lines (77 loc) · 4.1 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.9.1 - 2024-08-22

Fixed

  • Version numbers in documentation

0.9.0 - 2024-08-22

Added

  • Several methods in Reader (#89)
    • Reader::read_point, which returns a Result<Option<Point>>
    • Reader::read_points
    • Reader::read_points_into
    • Reader::read_all_points_into
  • Writer::write_point, Header::write_to, laz module, a few laz-specific methods on Header (#90)

Changed

  • Reorganize reading, including removing the lifetime specifier on Reader (#89)
  • Conslidate errors to a single enum (#87)

Fixed

  • Start of first EVLR (#91)

Deprecated

  • Read trait (#88)
  • Write trait (#90)
  • Many methods on Reader (#89)
    • read in favor of read_point
    • read_n in favor of read_points
    • read_n_into in favor of read_points_into
    • read_all_points in favor of read_all_points_into
  • Writer::write (#90)

0.8.8 - 2024-05-30

Added

  • Builder::minimum_supported_version (#83)

Changed

  • Reader now upgrades the las version rather than erroring when a certain feature or format is not supported (#83)

0.8.7 - 2024-05-13

Fixed

  • Deny more things (#78)
  • Bounds calculation for negative values (#77)

0.8.6 - 2024-05-06

Fixed

  • EVLR offset for laz (#76)

0.8.5 - 2024-04-07

Fixed

  • Allow zero GPS Time values (#75)

0.8.4 - 2024-04-04

Added

  • laz-parallel feature (#70)

0.8.3 - 2024-03-25

Added

  • Interface for reading many points (#68)

0.8.2 - 2024-03-12

Fixed

  • WKT CRSes for all point formats (#67)

0.8.1 - 2023-03-14

Fixed

  • Possible panic when reading invalid laz files (#58)

0.8.0 - 2022-11-30

Added

  • This CHANGELOG (#53)

Changed

  • Builder::date is now a NaiveDate, instead of a Date<Utc> (#52)
  • Benchmarks now use criterion (#52)
  • Edition is now 2021 (#52)