Skip to content

Commit

Permalink
Merge pull request #425 from girder/update-change-log
Browse files Browse the repository at this point in the history
Update the CHANGELOG with some recent PRs.
  • Loading branch information
manthey authored Feb 27, 2020
2 parents 482098e + 8ffaaff commit 5e98f74
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sudo: false
dist: xenial
# dist: xenial
language: python
python:
- "2.7"
Expand All @@ -12,18 +12,19 @@ services:
addons:
apt:
packages:
- rabbitmq-server
- rabbitmq-server
install:
- pip install --upgrade pip
- pip install --upgrade virtualenv
- if [ ${TRAVIS_PYTHON_VERSION:0:3} == "2.7" ]; then pip install virtualenv==20.0.5; fi
- pip install tox-travis
# If the last tag is more than 50 commits away, we need to fetch more for
# the scm_version module to determine the version.
- git fetch --depth=1000
script:
# Piping through cat does less buffering of the output but can consume the
# exit code
- tox | cat; test ${PIPESTATUS[0]} -eq 0
- tox -s | cat; test ${PIPESTATUS[0]} -eq 0
after_success:
- pip install codecov
- codecov --disable search pycov gcov --file build/test/coverage/py_coverage.xml build/test/coverage/cobertura-coverage.xml
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

### Bug Fixes
- Fixed an issue where changing the annotation history setting when Girder's settings' cache was enable wouldn't take effect until after a restart (#422)
- Fixed an issue when used as a Girder plugin and served with a proxy with a prefix path (#423)

### Improvements
- Better handling of imported file formats with adjacent files (#424)

## Version 1.0.2

Expand Down
3 changes: 2 additions & 1 deletion large_image/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

# Default logger
fallbackLogger = logging.getLogger('large_image')
fallbackLogger.setLevel(logging.INFO)
fallbackLogHandler = logging.StreamHandler()
fallbackLogHandler.setLevel(logging.INFO)
fallbackLogHandler.setLevel(logging.NOTSET)
fallbackLogger.addHandler(fallbackLogHandler)

ConfigValues = {
Expand Down

0 comments on commit 5e98f74

Please sign in to comment.