From c5e4fe3600ed965b3ecd5c8460a736046027e1ff Mon Sep 17 00:00:00 2001 From: RealPolitiX Date: Wed, 16 Sep 2020 14:28:24 -0500 Subject: [PATCH] Update version to 0.2.1 --- README.md | 1 + hdfio/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5299ea..e5a31ec 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # hdfio ![GitHub license](https://img.shields.io/github/license/RealPolitiX/hdfio) + All the useful python I/O utility functions for HDF5 files ## Rationale diff --git a/hdfio/__init__.py b/hdfio/__init__.py index aa16f98..acac7fe 100644 --- a/hdfio/__init__.py +++ b/hdfio/__init__.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -__version_info__ = ('0', '2', '0') +__version_info__ = ('0', '2', '1') __version__ = '.'.join(__version_info__) __author__ = ['R. Patrick Xian', 'others'] diff --git a/setup.py b/setup.py index f6bedd3..d4c7fe8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from codecs import open from os import path -__version__ = '0.2.0' +__version__ = '0.2.1' here = path.abspath(path.dirname(__file__))