Skip to content

Commit

Permalink
Release SquidLib 3.0.4!
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Jun 22, 2021
1 parent 71498cf commit a2e5a06
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.0.4-SNAPSHOT
3.0.4
Dependencies:
- squidlib-util: RegExodus 0.1.12
- squidlib: libGDX 1.10.0, anim8-gdx 0.2.10
Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,22 @@ it is usually nearly empty and silent, so prefer Discord if at all possible.
Documentation:
---
Jars of javadocs are distributed with each release via Maven Central, and with the current latest via JitPack. You can
get the docs and source of the latest version, 3.0.3, in two parts for each; squidlib-util (the core of the library,
get the docs and source of the latest version, 3.0.4, in two parts for each; squidlib-util (the core of the library,
and also the largest part) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.3/squidlib-util-3.0.3.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.3/squidlib-util-3.0.3-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.3/squidlib-util-3.0.3-sources.jar),
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4-sources.jar),
while squidlib (the display part of the library, named the way it is because depending on squidlib should also pull in
squidlib-util to make it a "one-stop shop" dependency) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.3/squidlib-3.0.3.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.3/squidlib-3.0.3-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.3/squidlib-3.0.3-sources.jar).
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4-sources.jar).
The completely-optional squidlib-extra module (primarily used for serialization; relies on libGDX but doesn't use it for display) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.3/squidlib-extra-3.0.3.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.3/squidlib-extra-3.0.3-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.3/squidlib-extra-3.0.3-sources.jar).
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4-sources.jar).

You can browse the **JavaDocs** of a recent commit (possibly newer than 3.0.3, but no older) here:
You can browse the **JavaDocs** of a recent commit (possibly newer than 3.0.4, but no older) here:
- [Docs for squidlib-util](http://yellowstonegames.github.io/SquidLib/squidlib-util/apidocs/index.html)
- [Docs for squidlib](http://yellowstonegames.github.io/SquidLib/squidlib/apidocs/index.html)
- [Docs for squidlib-extra](http://yellowstonegames.github.io/SquidLib/squidlib-extra/apidocs/index.html)
Expand Down Expand Up @@ -142,7 +142,7 @@ Core of SquidLib:
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</dependency>
```

Expand All @@ -151,7 +151,7 @@ Optional Text-Based Display (depends on libGDX 1.9.12 and anim8-gdx 0.2.4)
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</dependency>
```

Expand All @@ -160,25 +160,25 @@ Optional Serialization Support (depends on libGDX 1.9.12)
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-extra</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</dependency>
```

Or these dependencies for Gradle:

Core of SquidLib:
```
api 'com.squidpony:squidlib-util:3.0.3'
api 'com.squidpony:squidlib-util:3.0.4'
```

Optional Text-Based Display
```
api 'com.squidpony:squidlib:3.0.3'
api 'com.squidpony:squidlib:3.0.4'
```

Optional Serialization Support
```
api 'com.squidpony:squidlib-extra:3.0.3'
api 'com.squidpony:squidlib-extra:3.0.4'
```

If you want the latest version of SquidLib, which uses libGDX 1.9.12 and either GWT 2.8.2 or GWT 2.9.0 (if you use GWT),
Expand Down Expand Up @@ -292,7 +292,7 @@ GitHub repository: [https://github.com/yellowstonegames/SquidLib](https://github

Blog updates: [http://squidpony.com/not-games/squidlib/](http://squidpony.com/not-games/squidlib/) (possibly down permanently; server mishaps)

Created by Eben Howard - howard@squidpony.com
Created by Eben Howard - howard@squidpony.com
Currently developed by Tommy Ettinger - tommy.ettinger@gmail.com

Additional work has been greatly appreciated by a team of contributors. smelC and David Becker have each done excellent work in improving and modernizing SquidLib in all sorts of ways.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'com.vanniktech.maven.publish'

def projectName = 'squidlib-parent'

version '3.0.4-SNAPSHOT'
version '3.0.4'
group 'com.squidpony'

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ regexodusVersion=0.1.12
anim8Version=0.2.10

GROUP=com.squidpony
VERSION_NAME=3.0.4-SNAPSHOT
VERSION_NAME=3.0.4
POM_ARTIFACT_ID=squidlib-parent
POM_NAME=squidlib-parent
POM_DESCRIPTION=Connected libraries for procedural generation and roguelikes; parent repo.
Expand Down
4 changes: 2 additions & 2 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
jdk:
- openjdk15
- openjdk16
install:
- echo "Installing with Gradle"
- chmod 755 gradlew
- ./gradlew clean install
- ./gradlew clean install -x signMavenPublication
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.4-SNAPSHOT</version>
<version>3.0.4</version>
<packaging>pom</packaging>

<name>squidlib-parent</name>
Expand Down
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.4-SNAPSHOT</version>
<version>3.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.4</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
Expand Down
8 changes: 4 additions & 4 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.4-SNAPSHOT</version>-->
<!-- <version>3.0.4</version>-->
<!-- </parent>-->
<groupId>com.squidpony</groupId>
<artifactId>squidlib-performance</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.4</version>
<packaging>jar</packaging>

<name>squidlib-performance</name>
Expand Down Expand Up @@ -103,7 +103,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
<groupId>com.squidpony</groupId>
<!--<groupId>com.github.SquidPony.SquidLib</groupId>-->
<artifactId>squidlib</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.4</version>
<scope>compile</scope>
<!--<version>af61f301b1</version>-->
</dependency>
Expand Down Expand Up @@ -229,7 +229,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.4</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down
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.4-SNAPSHOT</version>
<version>3.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>squidlib-util</artifactId>
Expand Down
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.4-SNAPSHOT</version>
<version>3.0.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>squidlib</artifactId>
Expand Down Expand Up @@ -61,7 +61,7 @@
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.4</version>
</dependency>

<dependency>
Expand Down

0 comments on commit a2e5a06

Please sign in to comment.