Skip to content

Commit

Permalink
Version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Apr 14, 2016
1 parent 761eab6 commit 5ed4f3c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Changelog
=========

0.9.1 (Apr 14, 2016)
--------------------
* #155: Do not change SCRIPT_NAME if HTTP_X_SCRIPT_NAME isn't set (Louis Sautier)

0.8.0 (Feb 2, 2016)
-----------
-------------------
* #140, #145: Deprecate ``klaus.utils.SubUri`` in favor of the new ``klaus.utils.ProxyFix``,
which correctly handles ``SCRIPT_NAME``. For details on how to use the new ``ProxyFix``,
see `Klaus behind a reverse proxy <https://github.com/jonashaag/klaus/wiki/Klaus-behind-a-reverse-proxy>`_.
Expand Down
2 changes: 1 addition & 1 deletion klaus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from klaus.repo import FancyRepo


KLAUS_VERSION = utils.guess_git_revision() or '0.8.0'
KLAUS_VERSION = utils.guess_git_revision() or '0.9.1'


class Klaus(flask.Flask):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def install_data_files_hack():

setup(
name='klaus',
version='0.8.0',
version='0.9.1',
author='Jonas Haag',
author_email='jonas@lophus.org',
packages=['klaus', 'klaus.contrib'],
Expand Down

2 comments on commit 5ed4f3c

@sbraz
Copy link
Contributor

@sbraz sbraz commented on 5ed4f3c Apr 14, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jonashaag Thanks for the update :) It seems you forgot to push the commit to master, right?

@jonashaag
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, done

Please sign in to comment.