Skip to content

Commit

Permalink
Prepare for minor release 1.26.1 #405
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmegginson committed Aug 11, 2022
1 parent eac4f53 commit a3d9cb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2022-08-11 Release 1.26.1
- downgrade to mysql-connector-python==8.0.29 to avoid bug in 8.0.30

2022-08-08 Release 1.26
- add MAX_REQUEST_TIMEOUT configuration option, to place a cap on the maximum allowable timeout for reading external datasets
- add LOGGING_LEVEL configuration option (defaults to "ERROR")
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__="1.26"
__version__="1.26.1"
"""Module version number
See https://www.python.org/dev/peps/pep-0396/
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name = 'hxl-proxy',
packages = ['hxl_proxy'],
package_data={'hxl_proxy': ['*.sql']},
version = "1.26",
version = "1.26.1",
description = 'Flask-based web proxy for HXL',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -32,7 +32,7 @@
'flask==2.1.2',
'flask-caching',
'requests_cache',
'mysql-connector-python',
'mysql-connector-python==8.0.29',
'redis',
],
test_suite = "tests",
Expand Down

0 comments on commit a3d9cb7

Please sign in to comment.