# HG changeset patch # User ymh # Date 1544056511 -3600 # Node ID 7ee10198f2e1e7ae33a6378626ab47c38dc33a88 # Parent ef9cde55d9f16f03c016cb34b274db2291462a55 Upgrade version to 0.2.0 diff -r ef9cde55d9f1 -r 7ee10198f2e1 client/package.json --- a/client/package.json Thu Dec 06 01:33:54 2018 +0100 +++ b/client/package.json Thu Dec 06 01:35:11 2018 +0100 @@ -1,6 +1,6 @@ { "name": "client", - "version": "0.1.1", + "version": "0.2.0", "private": true, "homepage": "https://irinotes.iri-research.org", "dependencies": { diff -r ef9cde55d9f1 -r 7ee10198f2e1 src/irinotes/__init__.py --- a/src/irinotes/__init__.py Thu Dec 06 01:33:54 2018 +0100 +++ b/src/irinotes/__init__.py Thu Dec 06 01:35:11 2018 +0100 @@ -1,4 +1,4 @@ -VERSION = (0, 1, 1, 'final', 0) +VERSION = (0, 2, 0, 'final', 0) VERSION_STR = ".".join(map(lambda i:"%02d" % (i,), VERSION[:2])) ###