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

prepare version 2.2.1 #484

Merged
merged 2 commits into from
Feb 6, 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
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-02-06 Release 2.2.1:
- require libhxl==5.2.1:
- make logup log level configurable via environment variable
2024-01-18 Release 2.2:
- fix pcodes urls
- require libhxl==5.2:
Expand Down
2 changes: 1 addition & 1 deletion hxl_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

"""

__version__="2.2"
__version__="2.2.1"
"""Module version number
See https://www.python.org/dev/peps/pep-0396/

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requests_cache
ckanapi>=3.5
flask>=2.2.5<2.3 # 2.3 messes up pip dependencies
#git+https://github.com/HXLStandard/libhxl-python.git@dev#egg=libhxl # for development
libhxl==5.2 # for release
libhxl==5.2.1 # for release
flask-caching
redis
requests
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install_requires =
ckanapi>=3.5
flask>=2.2.5<2.3 # 2.3 messes up pip dependencies
#libhxl @ git+https://github.com/HXLStandard/libhxl-python.git@dev # for development
libhxl==5.2 # for release
libhxl==5.2.1 # for release
flask-caching
redis
structlog
Expand Down
Loading