Skip to content

Commit

Permalink
Fix runtime dependencies declaration in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Envek committed Oct 31, 2018
1 parent 8799283 commit 3c1e165
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## 0.1.1 - 2018-10-31

### Fixed

- Fix dependency declaration in gemspec (runtime deps was declared as development). @Envek

## 0.1.0 - 2018-10-30

- Initial release: custom metrics being reported to NewRelic. @Envek
2 changes: 1 addition & 1 deletion lib/yabeda/newrelic/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Yabeda
module NewRelic
VERSION = "0.1.0"
VERSION = "0.1.1"
end
end
4 changes: 2 additions & 2 deletions yabeda-newrelic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "newrelic_rpm", "~> 5.0"
spec.add_development_dependency "yabeda", "~> 0.1.0"
spec.add_dependency "newrelic_rpm", "~> 5.0"
spec.add_dependency "yabeda", "~> 0.1.0"

spec.add_development_dependency "bundler", "~> 1.17"
spec.add_development_dependency "rake", "~> 12.0"
Expand Down

0 comments on commit 3c1e165

Please sign in to comment.