This commit is contained in:
Andreas Schildbach 2025-02-21 10:37:41 +01:00
parent edae2f7420
commit f1b503095d
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ plugins {
id 'maven-publish' id 'maven-publish'
} }
version = '0.17-SNAPSHOT' version = '0.17'
dependencies { dependencies {
api 'org.bouncycastle:bcprov-jdk15to18:1.80' api 'org.bouncycastle:bcprov-jdk15to18:1.80'

View file

@ -51,7 +51,7 @@ import static org.bitcoinj.base.internal.Preconditions.check;
public class VersionMessage extends BaseMessage { public class VersionMessage extends BaseMessage {
/** The version of this library release, as a string. */ /** The version of this library release, as a string. */
public static final String BITCOINJ_VERSION = "0.17-SNAPSHOT"; public static final String BITCOINJ_VERSION = "0.17";
/** The value that is prepended to the subVer field of this application. */ /** The value that is prepended to the subVer field of this application. */
public static final String LIBRARY_SUBVER = "/bitcoinj:" + BITCOINJ_VERSION + "/"; public static final String LIBRARY_SUBVER = "/bitcoinj:" + BITCOINJ_VERSION + "/";