Skip to content

Commit

Permalink
prep for 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
majormoses committed May 13, 2017
1 parent b916e5c commit bb039a3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ cache:
install:
- bundle install
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.0
notifications:
email:
recipients:
Expand All @@ -26,8 +27,9 @@ deploy:
on:
tags: true
all_branches: true
rvm: 1.9.3
rvm: 2.0
rvm: 2.1
rvm: 2.2
rvm: 2.3
rvm: 2.4
repo: sensu-plugins/sensu-plugins-memcached
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang

## [Unreleased]

## [0.1.0] - 2017-05-12
### Changed
- bringing gemspec standard gemspec based on skel
- there appears to be a missing changelog entry for 0.0.3 but its a bunch of misc stuff both before and after its release

## [0.0.2] - 2015-07-14
### Changed
- updated sensu-plugin gem to 1.2.0
Expand All @@ -13,5 +18,7 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
### Added
- initial release

[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memcached/compare/0.0.2...HEAD
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memcached/compare/0.1.0...HEAD
[0.1.0]: https://github.com/sensu-plugins/sensu-plugins-memcached/compare/0.0.2...0.0.3
[0.0.3]: https://github.com/sensu-plugins/sensu-plugins-memcached/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/sensu-plugins/sensu-plugins-memcached/compare/0.0.1...0.0.2
4 changes: 2 additions & 2 deletions lib/sensu-plugins-memcached/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module SensuPluginsMemcached
module Version
MAJOR = 0
MINOR = 0
PATCH = 3
MINOR = 1
PATCH = 0

VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down
13 changes: 3 additions & 10 deletions sensu-plugins-memcached.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'date'

if RUBY_VERSION < '2.0.0'
require 'sensu-plugins-memcached'
else
require_relative 'lib/sensu-plugins-memcached'
end

# pvt_key = '~/.ssh/gem-private_key.pem'
require_relative 'lib/sensu-plugins-memcached'

Gem::Specification.new do |s|
s.authors = ['Sensu Plugins and contributors']
# s.cert_chain = ['certs/sensu-plugins.pem']
s.date = Date.today.to_s
s.description = 'This plugin provides native memcached instrumentation
for monitoring and metrics collection, including:
Expand All @@ -32,8 +25,8 @@ Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.post_install_message = 'You can use the embedded Ruby by setting EMBEDDED_RUBY=true in /etc/default/sensu'
s.require_paths = ['lib']
s.required_ruby_version = '>= 1.9.3'
# s.signing_key = File.expand_path(pvt_key) if $PROGRAM_NAME =~ /gem\z/
s.required_ruby_version = '>= 2.0.0'

s.summary = 'Sensu plugins for memcached'
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.version = SensuPluginsMemcached::Version::VER_STRING
Expand Down

0 comments on commit bb039a3

Please sign in to comment.