Skip to content

Commit

Permalink
solution: release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
splix committed Dec 1, 2020
1 parent 1245169 commit c31ab41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ group = 'io.emeraldpay.dshackle'
// Version schema:
// x.x.x for production, following SemVer model
// x.x-SNAPSHOT for development
version = '0.9.0-SNAPSHOT'
version = '0.9.0'

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class DefaultBitcoinMethods() : CallMethods {
override fun executeHardcoded(method: String): ByteArray {
return when (method) {
"getconnectioncount" -> "42".toByteArray()
"getnetworkinfo" -> "{\"version\": 700000, \"subversion\": \"/EmeraldDshackle:v0.7/\"}".toByteArray()
"getnetworkinfo" -> "{\"version\": 700000, \"subversion\": \"/EmeraldDshackle:v0.9/\"}".toByteArray()
else -> throw RpcException(-32601, "Method not found")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class DefaultEthereumMethods(
"true"
}
"web3_clientVersion" -> {
"\"EmeraldDshackle/v0.2\""
"\"EmeraldDshackle/v0.9\""
}
"eth_protocolVersion" -> {
"\"0x3f\""
Expand Down

0 comments on commit c31ab41

Please sign in to comment.