summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2014-09-19 16:38:29 +0200
committerLinus Nordberg <linus@nordberg.se>2014-09-20 15:59:57 +0200
commitc13074ac63ff2b37e4a42cedcb3222678e84fd9b (patch)
treebbb21a8f2d9497b9c3904eecff134928adddd233
parent4f1a715a3f2a6b049dcb9dcc5b38f6f2716e4101 (diff)
plop-0.1.1plop-0.1.1
-rw-r--r--NEWS.md24
-rw-r--r--ebin/plop.app2
2 files changed, 23 insertions, 3 deletions
diff --git a/NEWS.md b/NEWS.md
index 82da2c2..132135f 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,6 +1,26 @@
-# Changes in plop 0.1.1 - XXXX-XX-XX
+# Changes in plop 0.1.1 - 2014-09-20
-plop version 0.1.1 removes the depency on maps.
+plop version 0.1.1 removes the depency on maps and fixes several major
+bugs.
+
+## Bugfixes
+
+- Add a field in the database with the Merkle Tree Leaf hash, for
+ get-proof-by-hash (closes CATLFISH-3).
+
+- Do hash the full MerkleTreeLeaf. This bug made the tree head to
+ sometimes change after a crash. Found by Tom Fitzhenry.
+
+- Handle unknown hashes in inclusion().
+
+- Make ht:print_tree() print something more useful.
+
+- Add a field in the database with extra-data, for catlfish this holds
+ x509 cert chains without the leaf cert.
+
+## Features
+
+- get-entry-and-proof implemented.
# plop version 0.1.0 "PoC" - 2014-09-15
diff --git a/ebin/plop.app b/ebin/plop.app
index 5efb2c9..fd30cde 100644
--- a/ebin/plop.app
+++ b/ebin/plop.app
@@ -4,7 +4,7 @@
%%% Application resource file for plop (in -*- erlang -*- mode).
{application, plop,
[{description, "The plop store"},
- {vsn, "0.1.1-dev"},
+ {vsn, "0.1.1"},
{modules, [plop_app, plop_sup, plop, db, ht, hex]},
{applications, [kernel, stdlib, mnesia]}, % crypto, public_key
{registered, [plop, ht, db]},