Skip to content

Commit aaabfa9

Browse files
authored
Merge pull request #50 from input-output-hk/2.1.2
2.1.2
2 parents 299e642 + dbb4392 commit aaabfa9

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resolvers += "Sonatype Releases" at "https://oss.sonatype.org/content/repositori
1818

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

2424
### Hash functions

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name := "scrypto"
44

55
lazy val commonSettings = Seq(
66
organization := "org.scorexfoundation",
7-
version := "2.1.1",
7+
version := "2.1.2",
88
scalaVersion := "2.12.5",
99
licenses := Seq("CC0" -> url("https://creativecommons.org/publicdomain/zero/1.0/legalcode")),
1010
homepage := Some(url("https://github.com/input-output-hk/scrypto")),

Diff for: release-notes.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
**2.1.2**
2+
---------
3+
4+
* Base58: empty string allowed as parameter
5+
* Reworked Base16 implementation has much better performance
6+
* Minor changes in MerkleTree implementation
7+
8+
19
**2.1.1**
210
---------
311

Diff for: src/test/scala/scorex/crypto/authds/avltree/batch/BatchingPlayground.scala

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ object BatchingPlayground extends App with BatchTestingHelpers with Matchers {
3636
//lookupBenchmark()
3737
// testReadme
3838
//removedNodesBenchmark
39-
removedNodesBenchmark()
39+
//removedNodesBenchmark()
40+
41+
testReadme
4042

4143
def removedNodesBenchmark(startTreeSize: Int = 10000,
4244
toRemoveSize: Int = 2000,

0 commit comments

Comments
 (0)