Skip to content

Commit

Permalink
Bump rake dependency to mitigate vulnerability.
Browse files Browse the repository at this point in the history
More information: GHSA-jppv-gw3r-w3q8
  • Loading branch information
martijnbleeker committed Mar 12, 2020
1 parent 8ab1fc7 commit 81ae977
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.6.1] - 11 March 2020

- Bumped rake dependency to a higher version to mitigate CVE-2020-8130

## [0.6.0] - 20 January 2020

- Updated rubocop gem to `0.77.0`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is the common configuration for ruby-style checks by [Rubocop](https://gith
Add this line to your application's Gemfile under the `development` and `test` groups to include a specific version of this gem:

```ruby
gem 'rubocopital', '~> 0.5.1', require: false
gem 'rubocopital', '~> 0.6.1', require: false
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocopital/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Rubocopital
VERSION = "0.6.0"
VERSION = "0.6.1"
end
2 changes: 1 addition & 1 deletion rubocopital.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "rubocop-rspec", "1.37.0"

spec.add_development_dependency "bundler"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "rspec", "~> 3.0"
end

0 comments on commit 81ae977

Please sign in to comment.