-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGELOG.txt
36 lines (31 loc) · 1.12 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
=== 0.2.X (ongoing) ===
- fixed syntax error in DESCRIPTION file
- fixed command imports
- added localhost=False parameter to postgres getter
- added `memcached.get_memcached_usage`
- BUGFIX: saving the whole process name for `get_cpu_usage`
- added `cpu.get_cpu_usage`
- When passing no user to `get_memory_usage` we now return total memory used
by all users.
- Prepared app for Python 3.5
=== 0.1 ===
- Initial commit
# Suggested file syntax:
#
# === (ongoing) ===
# - this is always on top of the file
# - when you release a new version, you rename the last `(ongoing)` to the new
# version and add a new `=== (ongoing) ===` to the top of the file
#
# === 1.0 ===
# - a major version is created when the software reached a milestone and is
# feature complete
#
# === 0.2 ===
# - a minor version is created when new features or significant changes have
# been made to the software.
#
# === 0.1.1 ==
# - for bugfix releases, fixing typos in the docs, restructuring things, simply
# anything that doesn't really change the behaviour of the software you
# might use the third digit which is also sometimes called the build number.