Releasing 1.0.8

This commit is contained in:
gholt 2013-04-24 07:47:25 +00:00
parent c44b5b6448
commit 4fc009d5ad
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
swauth (1.0.8)
Added request.environ[reseller_request] = True if request is coming from an
user in .reseller_admin group
Fixed to work with newer Swift versions whose memcache clients require a
time keyword argument when the older versions required a timeout keyword
argument.
swauth (1.0.7)
New X-Auth-Token-Lifetime header a user can set to how long they'd like

View File

@ -17,7 +17,7 @@ import gettext
#: Version information (major, minor, revision[, 'dev']).
version_info = (1, 0, 8, 'dev')
version_info = (1, 0, 8)
#: Version string 'major.minor.revision'.
version = __version__ = ".".join(map(str, version_info))
gettext.install('swauth')