From 7440d5aa504ae2b5a76b78dda9022840ca2fa712 Mon Sep 17 00:00:00 2001 From: yhan818 Date: Fri, 5 Jan 2024 22:46:25 -0700 Subject: [PATCH 1/3] v1.1.1 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd805b..de12edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## [v1.1.1](https://github.com/UAL-RE/ReQUIAM/tree/v1.1.1) (2024-01-05) +**Fixed bugs:** + - Bug:crash after Grouper update + [#185](https://github.com/UAL-RE/ReQUIAM/issues/186) + ## [v1.1.0](https://github.com/UAL-RE/ReQUIAM/tree/v1.1.0) (2022-07-05) **Implemented enhancements:** - Enhancement: Upgrade to latest versions for Python 3.9, numpy 1.23.0, pandas 1.4.3, tabulate 0.8.10, sphinx 5.0.0, sphinx-rtd-theme 1.0.0 and sphinx-autodoc-typehints 1.18.3 From 5cd152345d179ee86d69a72116e0a11d86ebf5fd Mon Sep 17 00:00:00 2001 From: yhan818 Date: Mon, 8 Jan 2024 22:09:51 -0700 Subject: [PATCH 2/3] Fixed a bug due to grouper upgrade. V1.1.1 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de12edd..c7afd34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ## [v1.1.1](https://github.com/UAL-RE/ReQUIAM/tree/v1.1.1) (2024-01-05) **Fixed bugs:** - Bug:crash after Grouper update - [#185](https://github.com/UAL-RE/ReQUIAM/issues/186) + [#186](https://github.com/UAL-RE/ReQUIAM/issues/186) ## [v1.1.0](https://github.com/UAL-RE/ReQUIAM/tree/v1.1.0) (2022-07-05) **Implemented enhancements:** From a4f87bd5d0c9845e1bac66b7b19ba04f8b37e033 Mon Sep 17 00:00:00 2001 From: yhan818 Date: Tue, 9 Jan 2024 19:59:42 -0700 Subject: [PATCH 3/3] V1.1.1 --- requiam/__init__.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requiam/__init__.py b/requiam/__init__.py index 4a4a91a..45fd5ef 100644 --- a/requiam/__init__.py +++ b/requiam/__init__.py @@ -1,7 +1,7 @@ from typing import Union from datetime import datetime -__version__ = "1.1.0" +__version__ = "1.1.1" CODE_NAME = 'ReQUIAM' diff --git a/setup.py b/setup.py index b70c467..10abab7 100644 --- a/setup.py +++ b/setup.py @@ -8,12 +8,12 @@ setup( name='requiam', - version='v1.1.0', + version='v1.1.1', packages=['requiam'], url='https://github.com/UAL-RE/ReQUIAM', license='MIT License', - author='Yan Han', - author_email='yhan818@gmail.com', + author='Yan Han, Fernando Rios, Chun Ly', + author_email='data-management@arizona.edu', description='Query EDS information to set EDS attributes specific for Figshare account management', long_description=long_description, long_description_content_type='text/markdown',