Skip to content

Commit

Permalink
Bumped version number for point release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen K. Peterson committed Sep 15, 2017
1 parent 6bf72e8 commit 61f61c7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,26 @@ releases on the way from an old version to a new one. Fix any deprecation warni
release before upgrading to the next one. The documentation next to each Deprecated annotation
tells you what to use instead. Once we delete the deprecated methods, that documentation goes too.

# Release 3.0.15: RRB Tree
# Release 3.0.16: RRB Tree
- Added Option.Some.toString() and unit test for same.

See [3.0 Upgrade](#30-upgrade) notes below if upgrading from 2.x

#### Release 3.0.15: RRB Tree
- Added Transformable.head():Option.
If you want .any(Fn1<T,Boolean>):Boolean like Kotlin, call .filter(Fn1<T,Boolean>).head().isSome()
Couldn't call this first() because SortedSet already has .first() which returns null if the set is empty.
That's ambiguous if the set contains nulls, so use head() instead.
- Improved test coverage a little.

# Release 3.0.14: RRB Tree
#### Release 3.0.14: RRB Tree
- This is just a version number bump for the official release.

# Release 3.0.12: RRB Tree
#### Release 3.0.12: RRB Tree
- Changed all OneOf classes to take a single Object argument, plus each of the classes they can hold.
This great simplification is thanks to Atul Agrawal!

# Release 3.0.11: RRB Tree
#### Release 3.0.11: RRB Tree
- All OneOf classes now use a ZERO-BASED INDEX (used to use one-based).

#### Release 3.0: RRB Tree
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ If you're new to Paguro, consider starting with the streamlined
<dependency>
<groupId>org.organicdesign</groupId>
<artifactId>Paguro</artifactId>
<version>3.0.15</version>
<version>3.0.16</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ http://mvnrepository.com/artifact/org.organicdesign/Paguro
-->
<groupId>org.organicdesign</groupId>
<artifactId>Paguro</artifactId>
<version>3.0.15</version>
<version>3.0.16</version>
<packaging>jar</packaging>

<name>Paguro</name>
Expand Down

0 comments on commit 61f61c7

Please sign in to comment.