Skip to content

Commit

Permalink
new release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfk committed Jul 26, 2016
1 parent e7572c6 commit 506007f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion statuspage/statuspage.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from tqdm import tqdm
from collections import OrderedDict

__version__ = "0.5.0"
__version__ = "0.5.1"

try:
ROOT = sys._MEIPASS
Expand Down

0 comments on commit 506007f

Please sign in to comment.