Skip to content

Commit bcd2685

Browse files
author
Jef Spaleta
authored
Merge pull request #134 from sensu-plugins/release/4.0.2
Release/4.0.2 Fix for literal string
2 parents 19fad9d + 5285de0 commit bcd2685

14 files changed

+18
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).
55

66
## [Unreleased]
7-
- `check-postgres-replication.rb`: `# frozen_string_literal: true` does not play nicely with mixlib-cli
7+
8+
## [4.0.2] - 2020-06-02
9+
- Fixed `# frozen_string_literal: true` does not play nicely with mixlib-cli.
810

911
## [4.0.1] - 2020-04-20
1012
### Fixed
@@ -211,7 +213,8 @@ This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins
211213
### Added
212214
- initial release
213215

214-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...HEAD
216+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.2...HEAD
217+
[4.0.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...4.0.2
215218
[4.0.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...4.0.1
216219
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/3.0.0...4.0.0
217220
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.4.0...3.0.0

bin/check-postgres-alive.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# check-postgres-alive

bin/check-postgres-connections.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# check-postgres-connections

bin/check-postgres-query.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# check-postgres-query

bin/metric-postgres-connections.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-connections

bin/metric-postgres-dbsize.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-dbsize

bin/metric-postgres-graphite.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-graphite

bin/metric-postgres-locks.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-locks

bin/metric-postgres-statsbgwriter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-statsbgwriter

bin/metric-postgres-statsdb.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-statsdb

bin/metric-postgres-statsio.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-statsio

bin/metric-postgres-statstable.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metric-postgres-statstable

bin/metrics-postgres-query.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/env ruby
2-
# frozen_string_literal: true
2+
# frozen_string_literal: false
33

44
#
55
# metrics-postgres-query

lib/sensu-plugins-postgres/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module SensuPluginsPostgres
44
module Version
55
MAJOR = 4
66
MINOR = 0
7-
PATCH = 1
7+
PATCH = 2
88

99
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
1010
end

0 commit comments

Comments
 (0)