diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b3895e0b5..a874bea1f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,11 @@ +0.11.2 +====== + +2014-04-02 + +* packaging fixes only + + 0.11.1 ====== diff --git a/setup.py b/setup.py index 6f847cbae..f3fc0375a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="blockwart", - version="0.11.1", + version="0.11.2", description="config management for Python addicts", long_description=( "By allowing for easy and low-overhead config management, Blockwart fills the gap between complex deployments using Chef or Puppet and old school system administration over SSH.\n" diff --git a/src/blockwart/__init__.py b/src/blockwart/__init__.py index eec2dbce6..ab083f35a 100644 --- a/src/blockwart/__init__.py +++ b/src/blockwart/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 11, 1) +VERSION = (0, 11, 2) VERSION_STRING = ".".join([str(v) for v in VERSION])