From d6e4a9bd3f321bea9947f4ec577acf993979dfcf Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 24 Mar 2018 06:50:04 +0100 Subject: [PATCH] bump version --- mnists/__init__.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mnists/__init__.py b/mnists/__init__.py index 67eeb68..6326b93 100644 --- a/mnists/__init__.py +++ b/mnists/__init__.py @@ -3,6 +3,8 @@ # Copyright (C) 2018 Connor Olding # Distributed under terms of the MIT license. +__version__ = "0.2.1" + # NOTE: npz functionality is incomplete. import array diff --git a/setup.py b/setup.py index 1846f7f..24a1275 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='mnists', - version='0.2.0', + version='0.2.1', packages=[ 'mnists', ],