From dba0996ec5f39dce27c480229f2af4bdfadbcb39 Mon Sep 17 00:00:00 2001 From: Mircea Nistor Date: Thu, 12 Jul 2018 16:28:09 +0300 Subject: [PATCH] bump version to 0.2 and update readme --- Readme.md | 11 +++++++++-- demoapp/build.gradle | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 8d0697d..9b3ed3a 100644 --- a/Readme.md +++ b/Readme.md @@ -43,7 +43,7 @@ repositories { dependencies { ... - compile "com.github.uport-project:kmnid:0.1" + compile "com.github.uport-project:kmnid:0.2" } ``` @@ -85,4 +85,11 @@ assertFalse( MNID.isMNID('1GbVUSW5WJmRCpaCJ4hanUny77oDaWW4to') ) //bad encoding (ipfs hash) assertFalse( MNID.isMNID('QmXuNqXmrkxs4WhTDC2GCnXEep4LUD87bu97LQMn1rkxmQ') ) -``` \ No newline at end of file +``` + +## Changelog + +* 0.2 + * reduce library footprint by only using the base58 lib from kethereum +* 0.1 + * initial release \ No newline at end of file diff --git a/demoapp/build.gradle b/demoapp/build.gradle index 55ee08e..56c4340 100644 --- a/demoapp/build.gradle +++ b/demoapp/build.gradle @@ -32,5 +32,5 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" //this needs to be added to your project - implementation "com.github.uport-project:kmnid:0.1" + implementation "com.github.uport-project:kmnid:0.2" }