-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.py
More file actions
42 lines (26 loc) · 1.31 KB
/
version.py
File metadata and controls
42 lines (26 loc) · 1.31 KB
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
37
38
39
40
41
42
__version__ = "v1.4.2dev"
'''
v1.0.0 12/04/18 - Working version of program
v1.0.1 12/06/18 - Moved validation methods to separate file
v1.0.2 02/08/19 - Check parse data for newline, which caused the program to
crash
v1.1.0 02/08/19 - !Renamed Main.py to Core.py
- Fixed validations
- Added method in Process.py to get new PID
- Added git ignore file
- Reduced code for infinite loop inside mem_monitor()
- Fixed stop point bug
v1.2.0 02/11/19 - !Moved plotting methods to separate file
v1.3.0 02/12/19 - !Added a check to see if dependencies are installed. Will
not plot if dependencies are not installed.
v1.3.1 02/13/19 - Fixed importing modules issue
v1.3.2 02/14/19 - PEP8 code base
v1.3.3 02/14/19 - Fixed issue from new line added into command line
v1.3.4 02/20/19 - Use getters in Process.py instead of pulling variable
directly
v1.3.5 02/20/19 - Fixed '/bin/sh: 1: Syntax error: "(" unexpected' error
v1.3.6 02/21/19 - Cleaned code
v1.4.0 02/22/19 - !Added logging to program
v1.4.1 02/22/19 - Moved monitoring process to a separate file
v1.4.2 02/26/19 - Fixed grepping issue
'''