Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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