Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 2.1.0-31 #260

Merged
merged 1 commit into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "org.libtorrent4j"
version = "2.1.0-30"
version = "2.1.0-31"

java {
// using java 8 for android compatibility
Expand Down
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2.1.0-31

* update to libtorrent master
* using SWIG 4.1.1
* improved java api layer
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/libtorrent4j/LibTorrent.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static String version() {
* @return the git revision
*/
public static String revision() {
return "6371168c381ec28ee38e91fe4deafde7a90ae564";
return "8e53eba82fc74c40905fd6b05b6ed24ee6b6b2a1";
}

/**
Expand Down Expand Up @@ -71,7 +71,7 @@ public static String opensslVersion() {
* @return libtorrent4j version.
*/
public static String libtorrent4jVersion() {
return "2.1.0-30";
return "2.1.0-31";
}

/**
Expand Down
Loading