Skip to content

Releases: akarnokd/ixjava

1.0.0

20 Oct 08:50
Compare
Choose a tag to compare

Stable release of IxJava. No functional changes since 1.0.0-RC5.

1.0.0-RC5

02 Jan 09:29
Compare
Choose a tag to compare

New operators:

  • repeatCallable
  • bufferSplit
  • bufferUntil
  • bufferWhile
  • every
  • readOnly
  • orderedMerge

1.0.0-RC4

18 Dec 20:34
Compare
Choose a tag to compare
  • Fix type inference problem when the source is compiled with Java 8 target.

1.0.0-RC3

14 Sep 21:51
Compare
Choose a tag to compare

Notable changes:

  • IxJava no longer depends on RxJava 1.x and now defines its own functional interfaces: IxFunction, IxConsumer and IxSupplier to name a few. This allows having IxJava along with RxJava 2 without importing RxJava 1 as well or as a companion to Reactor 3.
  • Fixed typos in the documentation.

1.0.0-RC2

18 Aug 13:46
Compare
Choose a tag to compare

Notable changes:

  • Small fixes to the Javadoc (#5)
  • Rename in-sequence toX to collectToX, make toX be terminal consumers (2053c95).

1.0.0-RC1

15 Jul 23:30
Compare
Choose a tag to compare

Release candidate of Iterable/Interactive Extensions for Java.

The main entry point is the ix.Ix class

It offers:

  • 30 source operators (factory methods)
  • 95 transformative operators (instance methods)
  • 23 terminal operators (instance methods)

1.0.0-M1

13 Jul 20:42
Compare
Choose a tag to compare

~80% of the operators implemented.

0.92.6

16 Jun 07:06
Compare
Choose a tag to compare

RxJava dependency updated to 1.1.6

0.92.5

14 Jun 09:07
Compare
Choose a tag to compare

Match RxJava version 1.1.5.

0.92.3

13 Apr 18:35
Compare
Choose a tag to compare

RxJava dependency: 1.1.3

Notable changes:

  • All instance methods of Ix are now final.
  • Added collect(Func0, Action2) collector operator
  • Added reduce(Func2) reducer operator
  • Renamed zip(other, Func2) to zipWith