diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ee13f5a..6f7db75f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ https://github.com/donnemartin/saws/issues Changelog ========= -0.3.1 (2015-10-15) +0.3.2 (2015-10-16) ------------------ ### Features @@ -39,6 +39,7 @@ Changelog * Fixed [#35](https://github.com/donnemartin/saws/issues/35): Grep now works consistently with shortcuts, by [mlimaloureiro](https://github.com/mlimaloureiro). * Fixed [#41](https://github.com/donnemartin/saws/issues/41): Blank entry is no longer shown in list of completion if there is no optional value set for a given tag's key. * Fixed [#60](https://github.com/donnemartin/saws/issues/60): Running an empty command no longer results in a pygmentize syntax error. +* Fixed [#61](https://github.com/donnemartin/saws/issues/61): Refreshing resources multiple times no longer results in an exception. ### Updates diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8c52ebd2..31609128 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -20,7 +20,7 @@ https://github.com/donnemartin/saws/issues Changelog ========= -0.3.1 (2015-10-15) +0.3.2 (2015-10-16) ------------------ Features @@ -65,6 +65,9 @@ Bug Fixes - Fixed `#60 `__: Running an empty command no longer results in a pygmentize syntax error. +- Fixed `#61 `__: + Refreshing resources multiple times no longer results in an + exception. Updates ~~~~~~~ diff --git a/saws/__init__.py b/saws/__init__.py index 2a3bafc7..ae850095 100644 --- a/saws/__init__.py +++ b/saws/__init__.py @@ -13,4 +13,4 @@ # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. -__version__ = '0.3.1' +__version__ = '0.3.2'