diff --git a/CHANGELOG.md b/CHANGELOG.md index cda18d9..fb795db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All enhancements and patches to statuspage will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 0.5.1 [2016-07-26] +- Updated dependencies: tqdm and pygithub-redux + ## 0.5.0 [2016-07-26] - Systems and Panels are now ordered to make sure that no commit is issued when nothing changes (#12) - Refactored the code to make it easier to read diff --git a/README.md b/README.md index c1bacd6..e24c475 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,11 @@ again once you leave the page. ### Binaries #### macOS (64Bit) - curl -L https://github.com/jayfk/statuspage/releases/download/0.3.1/statuspage-darwin-64 > /usr/local/bin/statuspage + curl -L https://github.com/jayfk/statuspage/releases/download/0.5.1/statuspage-darwin-64 > /usr/local/bin/statuspage chmod +x /usr/local/bin/statuspage #### Linux (64Bit) - curl -L https://github.com/jayfk/statuspage/releases/download/0.3.1/statuspage-linux-64 > /usr/local/bin/statuspage + curl -L https://github.com/jayfk/statuspage/releases/download/0.5.1/statuspage-linux-64 > /usr/local/bin/statuspage chmod +x /usr/local/bin/statuspage ## Create a status page diff --git a/setup.py b/setup.py index 9fc0015..61de366 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import sys from setuptools import setup -__version__ = "0.5.0" +__version__ = "0.5.1" with io.open('README.md', 'r', encoding='utf-8') as readme_file: readme = readme_file.read() diff --git a/statuspage/statuspage.py b/statuspage/statuspage.py index f691370..59658f5 100644 --- a/statuspage/statuspage.py +++ b/statuspage/statuspage.py @@ -12,7 +12,7 @@ from tqdm import tqdm from collections import OrderedDict -__version__ = "0.5.0" +__version__ = "0.5.1" try: ROOT = sys._MEIPASS