diff --git a/CHANGELOG b/CHANGELOG index 8657219..3c3e243 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/slogging/__init__.py b/slogging/__init__.py index 9ae3e2c..a71bea6 100644 --- a/slogging/__init__.py +++ b/slogging/__init__.py @@ -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