Skip to content

Commit

Permalink
bumped version to 1.20; added changelog entry etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpzk committed Nov 6, 2019
1 parent 3c2ad78 commit 58bd9b9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.20

* added omni methods
* added new API interface, resources etc.
* added EnvConfig for fast configuration
* added optional parameters to make function
* added various examples for usage
* added more details in README.md

# 1.7

* added batching of requests
Expand Down
4 changes: 1 addition & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
addCompilerPlugin("io.tryp" % "splain" % "0.5.0" cross CrossVersion.patch)

lazy val commonSettings = Seq(
organization := "io.tokenanalyst",
version := "1.10.0",
version := "1.20.0",
scalaVersion := "2.12.10",
description := "bitcoin-rpc")

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/bitcoin/Instances.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object Instances {
): IO[BlockResponse] =
for {
hash <- getBlockHashInstance.getBlockHash(a, height)
data <- getBlockByHashInstance.getBlockByHash(a, hash)
data <- getBlockByHashInstance.getBlockByHash(a, hash)
} yield data
}

Expand Down

0 comments on commit 58bd9b9

Please sign in to comment.