Skip to content

Latest commit

 

History

History
85 lines (61 loc) · 3.05 KB

CHANGELOG.md

File metadata and controls

85 lines (61 loc) · 3.05 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.

3.1.1 - 2024-12-08

Fixed

  • fixed incorrect starting values for some enums (#42, Matthieu Viry)
  • included building doxygen documentation in CI (#41) -> fixes #43
  • fixed function signature for GEOSGeom_getUserData
  • fixed some function parameter descriptions and types

3.1.0 - 2024-12-05

Added

  • Support for z-values in GeoJSON helper functions

3.0.2 - 2024-11-26

Fixed

  • fixed Emscripten Module types

3.0.1 - 2024-11-25

Fixed

  • fixed GEOSversion() function signature

3.0.0 - 2024-11-25

Breaking Changes

  • Removed all string types from function signatures. All functions now return number or void and take number as arguments. -> Strings must be passed using geos.Module.UTF8ToString and read using geos.Module.stringToUTF8 functions.

Added

  • Function finishGEOS_r
  • Function GEOSCoverageIsValid_r
  • Function GEOSCoverageSimplifyVW_r
  • Function GEOSDisjointSubsetUnion_r
  • Function GEOSEqualsIdentical_r
  • Function GEOSGeom_createCircularString_r
  • Function GEOSGeom_createCompoundCurve_r
  • Function GEOSGeom_createCurvePolygon_r
  • Function GEOSGeom_createEmptyCircularString_r
  • Function GEOSGeom_createEmptyCompoundCurve_r
  • Function GEOSGeom_createEmptyCurvePolygon_r
  • Function GEOSGeom_createRectangle_r
  • Function GEOSGeom_getExtent_r
  • Function GEOSGeom_transformXY_r
  • Function GEOSGeomGetM_r
  • Function GEOSHasM_r
  • Function GEOSHilbertCode_r
  • Function GEOSLineMergeDirected_r
  • Function GEOSLineSubstring_r
  • Function GEOSOrientPolygons_r
  • Function GEOSPolygonHullSimplify_r
  • Function GEOSPolygonHullSimplifyMode_r
  • Function GEOSPreparedContainsXY_r
  • Function GEOSPreparedIntersectsXY_r
  • Function GEOSPreparedRelate_r
  • Function GEOSPreparedRelatePattern_r
  • Function GEOSRemoveRepeatedPoints_r
  • Function GEOSSTRtree_build_r
  • Function GEOSWKBReader_setFixStructure_r
  • Function GEOSWKTReader_setFixStructure_r

Fixed

Changed