summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2015-04-03 19:36:31 +0200
committerLinus Nordberg <linus@nordberg.se>2015-04-03 19:36:31 +0200
commitff09515865ed871f6fe55db37ed0df7e8bbc8a1c (patch)
tree3e618e8ea16a9ace567b607fbf952881883f7c70
parentee01d8235ce09e08fd0378f2b04d10bdb7d85f78 (diff)
Bump version to 0.6.0-dev.
-rw-r--r--NEWS.md17
-rw-r--r--ebin/plop.app5
2 files changed, 14 insertions, 8 deletions
diff --git a/NEWS.md b/NEWS.md
index 38d9c61..7a0b881 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,11 +1,16 @@
-# Changes in plop 0.2.0-dev - 2014-??-??
+# Changes in plop 0.6.0-dev
-## Bugfixes
+## Features
-- Serialise certificate chains and extensions as variable length
- RFC5246 vectors.
-- Use correctd LogID.
-- Sign the right things in SPT's.
+- Scale -- split up in frontend, storage and signing nodes. A frontend
+ and a storage node use a shared file system for peristent storage of
+ log entries, duplicate detection and mapping from merkle tree leaf
+ hash to entry (see doc/db.md).
+- Message validation -- intercommunication is done over HTTPS with
+ message signatures. A URL-based authorization scheme is read from
+ node config.
+- Docker images -- docker description files for generating docker
+ images and hints for deployment.
# Changes in plop 0.1.1 - 2014-09-20
diff --git a/ebin/plop.app b/ebin/plop.app
index 4d07d2b..d506334 100644
--- a/ebin/plop.app
+++ b/ebin/plop.app
@@ -1,10 +1,11 @@
%%% Copyright (c) 2014, NORDUnet A/S.
%%% See LICENSE for licensing information.
-%%% Application resource file for plop (in -*- erlang -*- mode).
+%%% Application resource file for plop.
+
{application, plop,
[{description, "The plop store"},
- {vsn, "0.2.0-dev"},
+ {vsn, "0.6.0-dev"},
{modules, [plop_app, plop_sup, plop, db, ht, hex]},
{applications, [kernel, stdlib]}, % crypto, public_key
{registered, [plop, ht, db]},