diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index faf0e197a..4222b51f0 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -5,7 +5,12 @@ A high-level view of the changes in each ConsensusJ binary release. == v0.5.13-SNAPSHOT -Released: Under development +Released: 2021-11-16 + +=== consensusj-jsonrpc + +* Reduce (default) logging of RPC status errors to "debug" level (these errors should be logged + or handled at the higher-level and for some use cases are very common) === consensusj-jsonrpc-cli @@ -20,6 +25,7 @@ Released: Under development === cj-btc-jsonrpc * Add BitCore/Omni `getbalanceinfo` method (requires address indexing) +* Add isAddressIndexEnabled method * Add methods for parsing `help` results === Dependency Updates diff --git a/README.adoc b/README.adoc index 8ca8b9bf7..7cf6f5334 100644 --- a/README.adoc +++ b/README.adoc @@ -1,9 +1,9 @@ = ConsensusJ Sean Gilligan -v0.5.12 +v0.5.13 :description: ConsensusJ README document. -:consensusj-version: 0.5.12 -:bitcoinj-version: 0.16-rc1 +:consensusj-version: 0.5.13 +:bitcoinj-version: 0.16 :bitcoinj-apidoc: https://bitcoinj.org/javadoc/{bitcoinj-version}/ :cj-apidoc: https://consensusj.github.io/consensusj/apidoc :tip-caption: :bulb: diff --git a/cj-bitcoinj-dsl-gvy/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule b/cj-bitcoinj-dsl-gvy/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule index 3c0f6c492..0936ca8ef 100644 --- a/cj-bitcoinj-dsl-gvy/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule +++ b/cj-bitcoinj-dsl-gvy/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule @@ -1,3 +1,3 @@ moduleName=ConsensusJ Groovy extensions for bitcoinj -moduleVersion=0.5.13-SNAPSHOT +moduleVersion=0.5.13 extensionClasses=org.consensusj.bitcoin.dsl.groovy.categories.CoinCategory,org.consensusj.bitcoin.dsl.groovy.categories.NumberCategory diff --git a/gradle.properties b/gradle.properties index dc3428173..87b494645 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -consensusjVersion = 0.5.13-SNAPSHOT +consensusjVersion = 0.5.13 # bitcoinj group, artifact, and version can be changed to use JitPack.io, etc bitcoinjGroup = org.bitcoinj