updated change log and version string

This commit is contained in:
John Dickinson 2011-08-08 12:23:34 -05:00
parent 58f9dccc9c
commit f5cee230dd
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
slogging (1.1)
- added access log delivery feature
- made account stats log processing more robust and added tests
slogging (1.0.1)
- Fixed request copy in internal proxy to work with later versions of webob
slogging (1.0)
- initial release since separation from swift project

View File

@ -14,7 +14,7 @@ class Version(object):
return '%s-dev' % (self.canonical_version,)
_version = Version('1.0', False)
_version = Version('1.1', False)
__version__ = _version.pretty_version
__canonical_version__ = _version.canonical_version