Skip to content

Commit

Permalink
Merge pull request #50 from input-output-hk/2.1.2
Browse files Browse the repository at this point in the history
2.1.2
  • Loading branch information
catena2w authored Jun 17, 2018
2 parents 299e642 + dbb4392 commit aaabfa9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resolvers += "Sonatype Releases" at "https://oss.sonatype.org/content/repositori

You can use Scrypto in your sbt project by simply adding the following dependency to your build file:
```scala
libraryDependencies += "org.scorexfoundation" %% "scrypto" % "2.1.1"
libraryDependencies += "org.scorexfoundation" %% "scrypto" % "2.1.2"
```

### Hash functions
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "scrypto"

lazy val commonSettings = Seq(
organization := "org.scorexfoundation",
version := "2.1.1",
version := "2.1.2",
scalaVersion := "2.12.5",
licenses := Seq("CC0" -> url("https://creativecommons.org/publicdomain/zero/1.0/legalcode")),
homepage := Some(url("https://github.com/input-output-hk/scrypto")),
Expand Down
8 changes: 8 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
**2.1.2**
---------

* Base58: empty string allowed as parameter
* Reworked Base16 implementation has much better performance
* Minor changes in MerkleTree implementation


**2.1.1**
---------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ object BatchingPlayground extends App with BatchTestingHelpers with Matchers {
//lookupBenchmark()
// testReadme
//removedNodesBenchmark
removedNodesBenchmark()
//removedNodesBenchmark()

testReadme

def removedNodesBenchmark(startTreeSize: Int = 10000,
toRemoveSize: Int = 2000,
Expand Down

0 comments on commit aaabfa9

Please sign in to comment.