File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
lib/sensu-plugins-memory-checks Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
This CHANGELOG follows the format listed at [ Keep A Changelog] ( http://keepachangelog.com/ )
5
5
6
6
## [ Unreleased]
7
+ ## [ 3.0.1] - 2017-07-07
8
+ ### Fixed
9
+ - check-memory.sh: fixed a syntax error preventing it from running (@majormoses )
10
+
7
11
### [ 3.0.0] - 2017-07-07
8
12
### Added
9
13
- ruby 2.4 testing (@majormoses )
@@ -105,7 +109,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
105
109
### Added
106
110
- initial release
107
111
108
- [ unreleased ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...HEAD
112
+ [ unreleased ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD
113
+ [ 3.0.1 ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...3.0.1
109
114
[ 3.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.1.0...3.0.0
110
115
[ 2.1.0 ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.0.0...2.1.0
111
116
[ 2.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/1.0.2...2.0.0
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ if [ "$hlp" = "yes" ]; then
41
41
exit 0
42
42
fi
43
43
44
- if [ -z " $WARN " ] || [ -z " $CRIT " ]; then
44
+ if [ -z " $WARN " ] || [ -z " $CRIT " ]; then
45
45
echo " You must provide both warning and critical values"
46
46
exit 3
47
47
fi
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module SensuPluginsMemoryChecks
2
2
module Version
3
3
MAJOR = 3
4
4
MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments