Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.1.1 #188

Merged
merged 3 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
[#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:**
- 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
Expand Down
2 changes: 1 addition & 1 deletion requiam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Union
from datetime import datetime

__version__ = "1.1.0"
__version__ = "1.1.1"

CODE_NAME = 'ReQUIAM'

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading