Skip to content

Commit

Permalink
v0.6.0 (#55)
Browse files Browse the repository at this point in the history
* Chainable.split()
* readme encancements

Co-authored-by: Martin Sawicki <msawicki@alumni.princeton.edu>
  • Loading branch information
chainables and martinsawicki authored Nov 13, 2020
1 parent 3fbb398 commit 025202b
Show file tree
Hide file tree
Showing 8 changed files with 754 additions and 405 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.project
.settings/
/target/
.*.html
261 changes: 220 additions & 41 deletions README.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<!-- to generate javadocs only: mvn javadoc:javadoc -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.chainables</groupId>
<artifactId>chainable</artifactId>
<version>0.5.2</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down
183 changes: 118 additions & 65 deletions src/main/java/com/github/chainables/chainable/Chainable.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ default ChainableTree<T> where(Predicate<ChainableTree<T>> condition) {
/**
* Creates a new tree (a single node) with the specified wrapped {@code value}.
* @param value the value to wrap in the new tree node
* @return
* @return a new tree wrapping the specified {@code value}
*/
static <T> ChainableTree<T> withRoot(T value) {
return ChainableTreeImpl.withRoot(value);
Expand Down
Loading

0 comments on commit 025202b

Please sign in to comment.