Skip to content

Commit

Permalink
Prepare for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanVanYperen committed May 27, 2015
1 parent 237a32f commit a144fa4
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version: 0.9.1

- New polling event dispatcher.
- Upgraded to artemis-odb 0.9.1-SNAPSHOT, libGDX-1.6.1
- Event benchmarking.
- Moved all example components and systems to contrib-jam module.

## Version: 0.7

- Drop in Eventbus.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with gwt support, check out these instead:
- [playn-artemis-quickstart](https://github.com/DaanVanYperen/playn-artemis-quickstart)

### Library Versions
Artemis-odb 0.8.1, (Optional) LibGDX 1.3.1
Artemis-odb 0.9.1-SNAPSHOT, (Optional) LibGDX 1.6.1

### License
The primary license for this code is CC0.
Expand All @@ -29,21 +29,21 @@ The primary license for this code is CC0.
<dependency>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-core</artifactId>
<version>0.8.1</version>
<version>0.9.1</version>
</dependency>

<dependency>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-eventbus</artifactId>
<version>0.8.1</version>
<version>0.9.1</version>
</dependency>
```

#### Gradle

```groovy
dependencies {
compile "net.mostlyoriginal.artemis-odb:contrib-core:0.8.1"
compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:0.8.1"
compile "net.mostlyoriginal.artemis-odb:contrib-core:0.9.1"
compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:0.9.1"
}
```
2 changes: 1 addition & 1 deletion contrib-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<artifactId>contrib-benchmark</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion contrib-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<artifactId>contrib-core</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion contrib-eventbus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<artifactId>contrib-eventbus</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion contrib-jam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<artifactId>contrib-jam</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion contrib-test-gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
</parent>
<artifactId>contrib-test-gwt</artifactId>
<packaging>war</packaging>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>net.mostlyoriginal.artemis-odb</groupId>
<artifactId>contrib-parent</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>0.9.1</version>
<packaging>pom</packaging>
<name>contrib-parent</name>
<description>Drop-in extensions for artemis-odb. Prefab systems, components, networking, events!
Expand Down Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-gwt</artifactId>
<version>1.5.3</version>
<version>1.6.1</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit a144fa4

Please sign in to comment.