Skip to content

Commit

Permalink
Merge pull request #338 from HXLStandard/dev
Browse files Browse the repository at this point in the history
Dev into master for 1.21.1
  • Loading branch information
danmihaila authored Aug 6, 2020
2 parents a4caadb + 74f071a commit 1b9fc10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-08-06 Release 1.21.1
- restored default Flask logging to stdout/stderr

2020-07-23 Release 1.21
- added a new "Logs" tab to show logs from HXL processing
- added UI support for Expand lists filter
Expand Down
7 changes: 2 additions & 5 deletions hxl_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Documentation: http://hxlstandard.org
"""

import logging, os
import os

import requests_cache
from flask import Flask, g, request
Expand All @@ -16,17 +16,14 @@
import werkzeug.datastructures
from . import reverse_proxied

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

# Main application object
app = Flask(__name__)

# Disable default logging (we'll add any log handlers explicitly in deployment)
app.logger.addHandler(logging.NullHandler())

# Handle subpaths
app.wsgi_app = reverse_proxied.ReverseProxied(app.wsgi_app)

Expand Down
2 changes: 1 addition & 1 deletion 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.21",
version = "1.21.1",
description = 'Flask-based web proxy for HXL',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 1b9fc10

Please sign in to comment.