All Versions
13
Latest Version
Avg Release Cycle
65 days
Latest Release
1147 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.11.1 Changes
August 04, 2020- ๐ Fix #176 by not allowing
RTreeEntry
andRTreeNode
on the same level of theRTree
All changes v0.11.0...v0.11.1
- ๐ Fix #176 by not allowing
-
v0.11.0 Changes
June 20, 2020- ๐ Fix #168 by restoring sorting by X and Y axes when packing
- โก๏ธ Update sbt-scalajs, scalajs-compiler to 1.1.0
- โก๏ธ Update Dotty to 0.24.0-RC1
All changes v0.10.0...v0.11.0
-
v0.10.0 Changes
May 11, 2020- โ Add Scala.js 1.0+ support
- โ Add Dotty 0.23 support
All changes v0.9.0...v0.10.0
-
v0.9.0 Changes
June 07, 2019- ๐ฆ Package renaming from
com.sizmek
tocom.github.plokhotnyuk
- Moving to the Maven Central
- ๐ Cross-build for Scala 2.13.0 release
All changes v0.8.0...v0.9.0
- ๐ฆ Package renaming from
-
v0.8.0 Changes
June 07, 2019- ๐ Cross-build for Scala 2.13.0-RC1
- More efficient packing using branch less intrinsics for
Math.min
/Math.max
All changes v0.7.1...v0.8.0
-
v0.7.1 Changes
January 28, 2019- More efficient querying of nearest entries
All changes v0.7.0...v0.7.1
-
v0.7.0 Changes
January 28, 2019- โ Add support for Scala 2.13.0-M5
- โ Remove support for Scala 2.13.0-M3
All changes v0.6.1...v0.7.0
-
v0.6.1 Changes
January 28, 2019- โก๏ธ Update Scala to 2.12.7
All changes v0.6.0...v0.6.1
-
v0.6.0 Changes
July 06, 2018- โ Add
rtree2d-
prefix to module and artifact names - โ Add function for calculation of distance to the center of ellipsoidal model of the Earth
- Simplify calculations of distances for spherical model
- โ Add entry constructor for spheres with different radiuses
- ๐ Use IndexOutOfBoundsException instead of ArrayIndexOutOfBoundsException
- ๐ Rename x1, y1, x2, y2 fields of entries to minX, minY, maxX, maxY
- ๐ Move constant parameters to the benchmark title
- Uncomment all benchmark parameters
- ๐ Fix nearestK benchmark for David Moten's R-Tree
- โ Add JTS benchmarks
All changes v0.5.0...v0.6.0
- โ Add
-
v0.5.0 Changes
June 22, 2018- ๐ Rename
nearest
query tonearestOption
and simplify it to return an entry option instead of option of tuple for the entry and distance to it - โ Add
nearestK
query for search up to K of nearest entries - โ Add
nearest
query to allow custom filtering or/and aggregation of entries during search - Simplify
f
parameter function of customsearch
queries to returnUnit
instead ofBoolean
- Extract array wrappers to separated (non inner) classes to avoid possible memory leaks due holding of reference on R-tree instance
All changes v0.4.0...v0.5.0
- ๐ Rename