diff --git a/CHANGES b/CHANGES index 5608292..4a8521b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +4.4 2019-04-03 +~~~~~~~~~~~~~~ + * Added optional progress bars to muninn-ingest (requires 'tqdm' package). * Added --parallel and --processes options to muninn-ingest. diff --git a/README.rst b/README.rst index 2833abe..5b76de1 100644 --- a/README.rst +++ b/README.rst @@ -54,12 +54,12 @@ in most cases. Using pip: :: - $ pip install muninn-4.3.tar.gz + $ pip install muninn-4.4.tar.gz Using setup.py: :: - $ tar xvfz muninn-4.3.tar.gz - $ cd muninn-4.3 + $ tar xvfz muninn-4.4.tar.gz + $ cd muninn-4.4 $ python setup.py install The muninn distribution contains a generic archiving framework that cannot be diff --git a/muninn/__init__.py b/muninn/__init__.py index 882e3d8..da6b174 100644 --- a/muninn/__init__.py +++ b/muninn/__init__.py @@ -4,7 +4,7 @@ from __future__ import absolute_import, division, print_function -__version__ = "4.3" +__version__ = "4.4" __copyright__ = "Copyright (C) 2014-2019 S[&]T, The Netherlands." __all__ = ["Error", "InternalError", "Struct", "Archive", "open", "config_path"] diff --git a/setup.py b/setup.py index 11e7cb2..2cae4bf 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name="muninn", - version="4.3", + version="4.4", description="Configurable product archive", url="http://stcorp.nl/", author="S[&]T",