Skip to content

Commit

Permalink
Release the Kraken! It's 3.0.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Jul 22, 2020
1 parent 4871996 commit 99bf822
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 2,082 deletions.
405 changes: 109 additions & 296 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.squidpony</groupId>
<artifactId>squidlib-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<packaging>pom</packaging>

<name>squidlib-parent</name>
Expand Down
444 changes: 0 additions & 444 deletions squidlib-extra/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions squidlib-extra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -30,7 +30,7 @@
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
Expand Down
444 changes: 0 additions & 444 deletions squidlib-performance/README.md

This file was deleted.

6 changes: 3 additions & 3 deletions squidlib-performance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ THE POSSIBILITY OF SUCH DAMAGE.
<!-- <parent>-->
<!-- <artifactId>squidlib-parent</artifactId>-->
<!-- <groupId>com.squidpony</groupId>-->
<!-- <version>3.0.0-SNAPSHOT</version>-->
<!-- <version>3.0.0</version>-->
<!-- </parent>-->
<groupId>com.squidpony</groupId>
<artifactId>squidlib-performance</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<packaging>jar</packaging>

<name>squidlib-performance</name>
Expand Down Expand Up @@ -83,7 +83,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
<groupId>com.squidpony</groupId>
<!--<groupId>com.github.SquidPony.SquidLib</groupId>-->
<artifactId>squidlib</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<scope>compile</scope>
<!--<version>af61f301b1</version>-->
</dependency>
Expand Down
444 changes: 0 additions & 444 deletions squidlib-util/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion squidlib-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>squidlib-util</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ int getRunID() {
//================================================================================

boolean isReachable(Node<V> start, Node<V> target) {
return findShortestPath(start, target, new ArrayList<V>());
return !findShortestPath(start, target).isEmpty();
}

//================================================================================
Expand Down
444 changes: 0 additions & 444 deletions squidlib/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions squidlib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>squidlib</artifactId>
Expand Down Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 99bf822

Please sign in to comment.