Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Apr 15, 2020
1 parent f56a795 commit ea0ef7b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,16 @@ The source code is available at https://github.com/eht16/kube-cargo-load/.
ChangeLog
---------

### 1.0.0 / 2020-04-12
### 1.1 / 2020-04-15

- Initial release
* Fix Python 3.6 compability (#1, Adrian Gajan)
* Improve docs
* Fix display units (KB -> Ki)
* Consider only PODs with configured limits in the summary

### 1.0 / 2020-04-12

* Initial release


Contributing
Expand Down
2 changes: 1 addition & 1 deletion kubecargoload.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import sys


VERSION = '1.0'
VERSION = '1.1'
KUBECTL_BIN = 'kubectl'

Pod = namedtuple('Pod', ('namespace', 'name', 'memory_limits', 'memory_requests', 'memory_usage'))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys

NAME = 'kube-cargo-load'
VERSION = '1.0'
VERSION = '1.1'

here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), 'rb') as f:
Expand Down

0 comments on commit ea0ef7b

Please sign in to comment.