Skip to content

Commit

Permalink
version bump to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fabmax committed Jul 2, 2023
1 parent c2efeed commit 26ac4dc
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ The library is published on maven central, so you can easily add this to your de
```
dependencies {
// java bindings
implementation("de.fabmax:physx-jni:2.2.0")
implementation("de.fabmax:physx-jni:2.2.1")
// native libraries - you can add the one matching your system or all
runtimeOnly("de.fabmax:physx-jni:2.2.0:natives-windows")
runtimeOnly("de.fabmax:physx-jni:2.2.0:natives-linux")
runtimeOnly("de.fabmax:physx-jni:2.2.0:natives-macos")
runtimeOnly("de.fabmax:physx-jni:2.2.0:natives-macos-arm64")
runtimeOnly("de.fabmax:physx-jni:2.2.1:natives-windows")
runtimeOnly("de.fabmax:physx-jni:2.2.1:natives-linux")
runtimeOnly("de.fabmax:physx-jni:2.2.1:natives-macos")
runtimeOnly("de.fabmax:physx-jni:2.2.1:natives-macos-arm64")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ subprojects {
apply(plugin = "maven-publish")

group = "de.fabmax"
version = "2.2.0"
version = "2.2.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibLinux extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("libPhysXJniBindings_64.so");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibLinux extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("libPhysXJniBindings_64.so");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibMacosArm64 extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("libPhysXJniBindings_64.dylib");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibMacos extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("libPhysXJniBindings_64.dylib");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibWindows extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("PhysX_64.dll");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class NativeLibWindows extends NativeLib {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final List<String> libraries = new ArrayList<>() {{
add("PhysX_64.dll");
Expand Down
2 changes: 1 addition & 1 deletion physx-jni/src/main/java/de/fabmax/physxjni/Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class Loader {

private static final String version = "2.2.0";
private static final String version = "2.2.1";

private static final AtomicBoolean isLoaded = new AtomicBoolean(false);

Expand Down

0 comments on commit 26ac4dc

Please sign in to comment.