Skip to content

Commit

Permalink
Merge pull request #134 from sensu-plugins/release/4.0.2
Browse files Browse the repository at this point in the history
Release/4.0.2  Fix for literal string
  • Loading branch information
Jef Spaleta authored Jun 2, 2020
2 parents 19fad9d + 5285de0 commit bcd2685
Show file tree
Hide file tree
Showing 14 changed files with 18 additions and 15 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This CHANGELOG follows the format listed [here](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).

## [Unreleased]
- `check-postgres-replication.rb`: `# frozen_string_literal: true` does not play nicely with mixlib-cli

## [4.0.2] - 2020-06-02
- Fixed `# frozen_string_literal: true` does not play nicely with mixlib-cli.

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

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.2...HEAD
[4.0.2]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.1...4.0.2
[4.0.1]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/3.0.0...4.0.0
[3.0.0]: https://github.com/sensu-plugins/sensu-plugins-postgres/compare/2.4.0...3.0.0
Expand Down
2 changes: 1 addition & 1 deletion bin/check-postgres-alive.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# check-postgres-alive
Expand Down
2 changes: 1 addition & 1 deletion bin/check-postgres-connections.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# check-postgres-connections
Expand Down
2 changes: 1 addition & 1 deletion bin/check-postgres-query.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# check-postgres-query
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-connections.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-connections
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-dbsize.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-dbsize
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-graphite.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-graphite
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-locks.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-locks
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-statsbgwriter.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-statsbgwriter
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-statsdb.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-statsdb
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-statsio.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-statsio
Expand Down
2 changes: 1 addition & 1 deletion bin/metric-postgres-statstable.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metric-postgres-statstable
Expand Down
2 changes: 1 addition & 1 deletion bin/metrics-postgres-query.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
# frozen_string_literal: false

#
# metrics-postgres-query
Expand Down
2 changes: 1 addition & 1 deletion lib/sensu-plugins-postgres/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module SensuPluginsPostgres
module Version
MAJOR = 4
MINOR = 0
PATCH = 1
PATCH = 2

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down

0 comments on commit bcd2685

Please sign in to comment.