diff --git a/CHANGELOG.md b/CHANGELOG.md index 14238a59..d589222a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -0.18.0.beta1 (unreleased) +0.18.0.beta1 (2020-01-05) =================== This is a huge release highlighted by changing our support for ruby versions to 2.4+ (so things that aren't EOL'ed) and finally adding branch coverage support! diff --git a/Gemfile b/Gemfile index 9155e2b3..a5d235bc 100644 --- a/Gemfile +++ b/Gemfile @@ -6,7 +6,7 @@ source "https://rubygems.org" # gem "simplecov-html", :path => ::File.dirname(__FILE__) + "/../simplecov-html" # Uncomment this to use development version of html formatter from github -gem "simplecov-html", :github => "colszowka/simplecov-html" +# gem "simplecov-html", :github => "colszowka/simplecov-html" group :development do gem "apparition", "0.4.0" diff --git a/Gemfile.lock b/Gemfile.lock index 9af89305..6641a910 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,15 +1,9 @@ -GIT - remote: https://github.com/colszowka/simplecov-html.git - revision: f75df50baae46a4439a948312e8075034c99f07b - specs: - simplecov-html (0.11.0.pre.dev) - PATH remote: . specs: - simplecov (0.18.0.pre.dev) + simplecov (0.18.0.beta1) docile (~> 1.1) - simplecov-html (~> 0.11.0.pre.dev) + simplecov-html (~> 0.11.0.beta1) GEM remote: https://rubygems.org/ @@ -111,6 +105,7 @@ GEM ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 1.7) ruby-progressbar (1.10.1) + simplecov-html (0.11.0.beta1) spoon (0.0.6) ffi test-unit (3.3.4) @@ -140,7 +135,6 @@ DEPENDENCIES rspec (~> 3.2) rubocop simplecov! - simplecov-html! test-unit BUNDLED WITH diff --git a/lib/simplecov/version.rb b/lib/simplecov/version.rb index 1f5a35d1..d060e26b 100644 --- a/lib/simplecov/version.rb +++ b/lib/simplecov/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module SimpleCov - VERSION = "0.18.0-dev" + VERSION = "0.18.0.beta1" end diff --git a/simplecov.gemspec b/simplecov.gemspec index 343c7798..d1200a43 100644 --- a/simplecov.gemspec +++ b/simplecov.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |gem| gem.required_ruby_version = ">= 2.4.0" gem.add_dependency "docile", "~> 1.1" - gem.add_dependency "simplecov-html", "~> 0.11.0-dev" + gem.add_dependency "simplecov-html", "~> 0.11.0.beta1" gem.files = Dir["{lib}/**/*.*", "bin/*", "LICENSE", "*.md", "doc/*"] gem.require_paths = ["lib"]