# HG changeset patch # User ymh # Date 1545096533 -3600 # Node ID 1b9b9401ba7c813d717daa42c58927f3a57e7e9e # Parent c78d579f4b5518645c689612e89576885afb416b Set version 0.2.1 diff -r c78d579f4b55 -r 1b9b9401ba7c client/package.json --- a/client/package.json Tue Dec 18 02:27:22 2018 +0100 +++ b/client/package.json Tue Dec 18 02:28:53 2018 +0100 @@ -1,6 +1,6 @@ { "name": "client", - "version": "0.2.0", + "version": "0.2.1", "private": true, "homepage": "https://irinotes.iri-research.org", "dependencies": { diff -r c78d579f4b55 -r 1b9b9401ba7c src/irinotes/__init__.py --- a/src/irinotes/__init__.py Tue Dec 18 02:27:22 2018 +0100 +++ b/src/irinotes/__init__.py Tue Dec 18 02:28:53 2018 +0100 @@ -1,4 +1,4 @@ -VERSION = (0, 2, 0, 'final', 0) +VERSION = (0, 2, 1, 'final', 0) VERSION_STR = ".".join(map(lambda i:"%02d" % (i,), VERSION[:2])) ###