diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index b571f68c..33fafab1 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,25 +3,34 @@ A mid-level view of the changes in each *OmniJ* binary release. -== v0.5.20-SNAPSHOT +== v0.5.20 -Released: Under development +Released: 2021-11-17 === omnij-core * Convert `Ecosystem` to `enum` -* Remove deprecated `Ecosystem` constants (`MSC`/`TMSC`) * Convert `PropertyType` to `enum` +* Remove deprecated `Ecosystem` constants (`MSC`/`TMSC`) + +=== omnij-jsonrpc + +* Add `OmniClient::getAllBalancesForAddressAsList` === omnij-net-api -* OmniCoreClient: Improved implementations of `balancesForAddress*`: notably `balancesForAddressesAsync` now uses parallel requests to fetch balances. +* OmniCoreClient: Use OmniProxy if available +* OmniCoreClient: Improved implementations of `balancesForAddress*`: notably `balancesForAddressesAsync` now uses parallel requests to fetch balances and can merge in BTC balances when Address Index or OmniProxy is available. === Dependency Updates * bitcoinj 0.16 * ConsensusJ 0.5.13 +=== Build/Test Updates + +* Github Actions `graalvm.yml` workflow: Use GraalVM 21.3.0 + == v0.5.19 Released: 2021-11-11 diff --git a/README.adoc b/README.adoc index 44b15ed1..94498668 100644 --- a/README.adoc +++ b/README.adoc @@ -1,8 +1,8 @@ = OmniJ Project Sean Gilligan -v0.5.19 +v0.5.20 :description: OmniJ README document. -:omnij-version: 0.5.19 +:omnij-version: 0.5.20 [WARNING] This software is EXPERIMENTAL software for **REGTEST and TESTNET TRANSACTIONS** only. *USE ON MAINNET AT YOUR OWN RISK.* diff --git a/gradle.properties b/gradle.properties index f5aa5cbc..0212ccc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -omnijVersion = 0.5.20-SNAPSHOT +omnijVersion = 0.5.20 useMavenLocal = false diff --git a/omnij-dsl/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule b/omnij-dsl/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule index fef8947e..f333c48e 100644 --- a/omnij-dsl/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule +++ b/omnij-dsl/src/main/resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule @@ -1,3 +1,3 @@ moduleName=OmniJ Groovy extensions -moduleVersion=0.5.20-SNAPSHOT +moduleVersion=0.5.20 extensionClasses=foundation.omni.dsl.categories.NumberCategory