Skip to content

Releases: davidmoten/rtree

0.5.9

12 Apr 22:48
Compare
Choose a tag to compare
  • #22 Fix for race condition in backpressure path where two threads request 0

0.5.8

26 Mar 11:27
Compare
Choose a tag to compare
  • Ensure RTree.nearest returns in ascending order of distance (fixes #21)

0.5.7

12 Mar 10:36
Compare
Choose a tag to compare
  • upgrade to rxjava 1.0.8, rxjava-extras 0.5.1

0.5.6

28 Feb 00:46
Compare
Choose a tag to compare
  • #19 amend javadoc to state that RTree.nearest returns in ascending order of distance
  • upgrade to rxjava 1.0.7
  • use maven parent com.github.davidmoten:sonatype-parent to make releases easy

0.5.4

01 Dec 02:30
Compare
Choose a tag to compare
  • upgrade dependency to io.reactivex:rxjava:1.0.1

0.5.3

14 Nov 07:53
Compare
Choose a tag to compare
  • make RTree constructor with Context parameter private
  • refactor Backpressure class to use more immutability
  • add Precondition.checkNotNull(selector) for Context constructor
  • set constructor and method visibility of NodeAndEntries to default, was public
  • set visiblity of Node.children() to default, was public
  • use reflection to get unit test coverage of Geometries private constructor
  • update to rxjava 0.20.7
  • update site plugins to latest
  • add javadoc

0.5.2

12 Nov 07:49
Compare
Choose a tag to compare
  • fix wildcard typing in RTree.search
  • make Intersects final

0.5.1

04 Nov 11:30
Compare
Choose a tag to compare
  • add these search methods to RTree:
<R extends Geometry> Observable<Entry<T, S>> search(
    R g, Func2<? super S, ? super R, Boolean> intersects);

<R extends Geometry> Observable<Entry<T, S>> search(
    R g, double maxDistance, Func2<S, R, Double> distance);

0.5

02 Nov 04:41
Compare
Choose a tag to compare
0.5
  • #13 add generic type to RTree and Entry for the Geometry type

0.4.1

01 Nov 08:16
Compare
Choose a tag to compare
  • #11 restrict access to Point, Circle, Rectangle constructors
  • #12 add overloads of RTree.search and RTree.nearest for Point parameters