Skip to content

Commit 0bf4ca9

Browse files
Bump version 3.1.0
1 parent ff2a4b7 commit 0bf4ca9

File tree

8 files changed

+18
-26
lines changed

8 files changed

+18
-26
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ target/
44
*.log
55
.project
66
.classpath
7+
*.xml.versionsBackup

jbox2d-library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>jbox2d</artifactId>
55
<groupId>de.pirckheimer-gymnasium</groupId>
6-
<version>3.0.0</version>
6+
<version>3.1.0</version>
77
</parent>
88
<artifactId>jbox2d-library</artifactId>
99
<name>jbox2d-library</name>

jbox2d-library/src/main/java/de/pirckheimer_gymnasium/jbox2d/dynamics/joints/PrismaticJoint.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -196,17 +196,11 @@ protected PrismaticJoint(IWorldPool argWorld, PrismaticJointDef def)
196196
perp = new Vec2();
197197
}
198198

199-
/**
200-
*
201-
*/
202199
public Vec2 getLocalAnchorA()
203200
{
204201
return localAnchorA;
205202
}
206203

207-
/**
208-
*
209-
*/
210204
public Vec2 getLocalAnchorB()
211205
{
212206
return localAnchorB;
@@ -248,9 +242,6 @@ public void getReactionForce(float invDt, Vec2 argOut)
248242
pool.pushVec2(1);
249243
}
250244

251-
/**
252-
*
253-
*/
254245
@Override
255246
public float getReactionTorque(float invDt)
256247
{

jbox2d-serialization/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<parent>
66
<artifactId>jbox2d</artifactId>
77
<groupId>de.pirckheimer-gymnasium</groupId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
</parent>
1010
<packaging>jar</packaging>
1111
<artifactId>jbox2d-serialization</artifactId>
1212
<name>jbox2d-serialization</name>
1313
<description>Serialization library for jbox2d</description>
1414
<url>http://code.google.com/p/jbox2d/</url>
15-
<version>3.0.0</version>
15+
<version>3.1.0</version>
1616

1717
<build>
1818
<plugins>
@@ -99,7 +99,7 @@
9999
<dependency>
100100
<groupId>de.pirckheimer-gymnasium</groupId>
101101
<artifactId>jbox2d-library</artifactId>
102-
<version>3.0.0</version>
102+
<version>3.1.0</version>
103103
</dependency>
104104
<dependency>
105105
<groupId>com.google.protobuf</groupId>

jbox2d-testbed-javafx/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jbox2d</artifactId>
77
<groupId>de.pirckheimer-gymnasium</groupId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
</parent>
1010
<artifactId>jbox2d-testbed-javafx</artifactId>
1111
<name>jbox2d-testbed-javafx</name>
@@ -27,21 +27,21 @@
2727
<dependency>
2828
<groupId>de.pirckheimer-gymnasium</groupId>
2929
<artifactId>jbox2d-library</artifactId>
30-
<version>3.0.0</version>
30+
<version>3.1.0</version>
3131
<type>jar</type>
3232
<scope>compile</scope>
3333
</dependency>
3434
<dependency>
3535
<groupId>de.pirckheimer-gymnasium</groupId>
3636
<artifactId>jbox2d-serialization</artifactId>
37-
<version>3.0.0</version>
37+
<version>3.1.0</version>
3838
<type>jar</type>
3939
<scope>compile</scope>
4040
</dependency>
4141
<dependency>
4242
<groupId>de.pirckheimer-gymnasium</groupId>
4343
<artifactId>jbox2d-testbed</artifactId>
44-
<version>3.0.0</version>
44+
<version>3.1.0</version>
4545
<type>jar</type>
4646
<scope>compile</scope>
4747
</dependency>

jbox2d-testbed-jogl/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@
55
<parent>
66
<artifactId>jbox2d</artifactId>
77
<groupId>de.pirckheimer-gymnasium</groupId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
</parent>
1010
<artifactId>jbox2d-testbed-jogl</artifactId>
11-
<version>3.0.0</version>
11+
<version>3.1.0</version>
1212
<packaging>jar</packaging>
1313
<url>http://code.google.com/p/jbox2d/</url>
1414
<description>Project for making a jogl panel for the testbed</description>
1515
<dependencies>
1616
<dependency>
1717
<groupId>de.pirckheimer-gymnasium</groupId>
1818
<artifactId>jbox2d-library</artifactId>
19-
<version>3.0.0</version>
19+
<version>3.1.0</version>
2020
<type>jar</type>
2121
<scope>compile</scope>
2222
</dependency>
2323
<dependency>
2424
<groupId>de.pirckheimer-gymnasium</groupId>
2525
<artifactId>jbox2d-serialization</artifactId>
26-
<version>3.0.0</version>
26+
<version>3.1.0</version>
2727
<type>jar</type>
2828
<scope>compile</scope>
2929
</dependency>
3030
<dependency>
3131
<groupId>de.pirckheimer-gymnasium</groupId>
3232
<artifactId>jbox2d-testbed</artifactId>
33-
<version>3.0.0</version>
33+
<version>3.1.0</version>
3434
<type>jar</type>
3535
<scope>compile</scope>
3636
</dependency>

jbox2d-testbed/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>jbox2d</artifactId>
77
<groupId>de.pirckheimer-gymnasium</groupId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
</parent>
1010
<artifactId>jbox2d-testbed</artifactId>
1111
<name>jbox2d-testbed</name>
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>de.pirckheimer-gymnasium</groupId>
2424
<artifactId>jbox2d-library</artifactId>
25-
<version>3.0.0</version>
25+
<version>3.1.0</version>
2626
<type>jar</type>
2727
<scope>compile</scope>
2828
</dependency>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>de.pirckheimer-gymnasium</groupId>
5555
<artifactId>jbox2d-serialization</artifactId>
56-
<version>3.0.0</version>
56+
<version>3.1.0</version>
5757
<type>jar</type>
5858
<scope>compile</scope>
5959
</dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>de.pirckheimer-gymnasium</groupId>
77
<artifactId>jbox2d</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
<packaging>pom</packaging>
1010
<name>jbox2d</name>
1111
<description>JBox2D is a 2d Java physics engine, a port of the C++ Box2d engine. This is the parent pom for the library and testbed modules.</description>

0 commit comments

Comments
 (0)