Skip to content

Commit 625d060

Browse files
committed
Documented 4.3 changes thus far. Also separated 2.19-2.21 changes
1 parent 01aef1b commit 625d060

File tree

4 files changed

+55
-2
lines changed

4 files changed

+55
-2
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
= Release 2.19
2+
3+
Released: March 2009
4+
5+
* Comonadic operations on Stream, Tree and others
6+
* Database monad (java.sql.Connection as a functor)
7+
* Natural Number data type
8+
* The Constant Arrow ($)
9+
* Immutable Tree Map
10+
* A parallel quick-sort using Functional Java actors
11+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
= Release 2.20
2+
3+
Released: July 2009
4+
5+
The highlight of this release is a parallel module built on top of
6+
actors for doing some very clever and high-level parallel programming.
7+
e.g. An implementation of the parallel map/reduce algorithm
8+
(parFoldMap) and APIs for making use of actors easier for you, the user.
9+
10+
Other new bits includes:
11+
12+
* A heap of bug fixes, particularly on Stream (and therefore, many of
13+
its dependencies)
14+
* LazyString -- a lazy sequence of characters
15+
* Function Wrappers
16+
* Improvements to the Tree and Zipper implementations
17+
* Other tidbits and additional APIs
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
= Release 2.21
2+
3+
Released: Feb, 2010
4+
5+
* Bug fixes
6+
* Immutable 2-3 finger tree

etc/release-notes/release-notes-4.3.adoc

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,27 @@ Released: Unreleased
55

66
== Enhancements
77

8-
TODO
8+
* Added toInt and fromInt to fj.Ordering (#71)
9+
* Added Java 8 collectors (#69)
10+
* Made Seq.empty() and List.nil() return singleton instances (#70)
11+
* Made anonymous classes using lamdas (#67)
12+
* Improved show for list, tree, set, treemap, stream, array, V arity 2 to 8, HList (#77)
13+
* Added TreeMap.splitLookup (#4)
14+
* Add union to TreeMap (#83)
15+
* Added List.isSingle (#84)
16+
* Added Option traverse family of methods (#85)
17+
* Added equals, hashCode and toString to classes P's, Array, Either, List, Option, Seq, Set, Stream, Tree, TreeMap, Validation (#75, 86)
18+
* Added release notes as asciidoc (#`2)
19+
* Added F0 interface (#93)
20+
* Added wrapper functions for function arity 1 and 2 (#94)
21+
* Enhanced implementation of equals for standard classes (#95)
22+
* Added traverse method family to P1, P2, Either, List, Validation (#80)
23+
* Enhanced integration with basic Java types (#99)
924

1025
== Fixes
1126

12-
TODO
27+
* Fixed TreeMap.split (#4, #79)
28+
* Fixed Option.fromNull javadoc (#73)
29+
* Fixed Try javadoc (#91)
30+
31+

0 commit comments

Comments
 (0)