From 225e694045059aa6c0b1b97d9e48e830d144cbb9 Mon Sep 17 00:00:00 2001 From: FMasson <97910143+Zybulon@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:03:59 +0100 Subject: [PATCH] update version number --- docs/conf.py | 2 +- h5pandas/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b844138..c3b0df0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = 'h5pandas' -copyright = '2023, Frédéric MASSON' +copyright = '2024, Frédéric MASSON' author = 'Frédéric MASSON' release = h5pandas.__version__ diff --git a/h5pandas/__init__.py b/h5pandas/__init__.py index 38ecdd5..edffee3 100644 --- a/h5pandas/__init__.py +++ b/h5pandas/__init__.py @@ -3,4 +3,4 @@ from .dataframe import dataset_to_dataframe from h5py import * from .group import Group, File -__version__ = "0.4" +__version__ = "0.5" diff --git a/setup.py b/setup.py index f182fcd..ef74284 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # This call to setup() does all the work setup( name="h5pandas", - version="0.4", + version="0.5", description="Load hdf5 into Pandas DataFrame instantaneously", long_description=long_description, long_description_content_type="text/markdown",