From b9cd1c48605c5af5db21d1c7f1cd3f49457d35a3 Mon Sep 17 00:00:00 2001 From: Matthew Newville Date: Tue, 5 Dec 2023 14:31:35 -0600 Subject: [PATCH] update version --- python/setup.cfg | 2 +- python/xraydb/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/setup.cfg b/python/setup.cfg index 283bb02..18a51a7 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 4.5.3 +version = 4.5.4 name = xraydb description = X-ray Reference Data for the Elements using SQLite long_description = diff --git a/python/xraydb/version.py b/python/xraydb/version.py index 6f3d14f..1c11fea 100644 --- a/python/xraydb/version.py +++ b/python/xraydb/version.py @@ -1,4 +1,4 @@ # -__version_tuple__ = (4, 5, 3) +__version_tuple__ = (4, 5, 4) __version__ = '.'.join(['%s' % i for i in __version_tuple__])