Skip to content

Commit

Permalink
Require MFA when pushing to Rubygems
Browse files Browse the repository at this point in the history
- Also updates httpparty range
  • Loading branch information
davidwessman committed Feb 1, 2022
1 parent a859f03 commit 9ee7d41
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2] - 2022-02-01

- Require MFA for pushing to [Rubygems](https://guides.rubygems.org/mfa-requirement-opt-in/)

## [0.5.1] - 2022-02-01

- Look for screenshots in `Capybara.save_path` to allow different output folders for screenshots.
Expand Down Expand Up @@ -118,7 +122,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Handle inconsistency in source_location of test result in Minitest for different versions.

[unreleased]: https://github.com/davidwessman/blinka_reporter/compare/v0.4.0...HEAD
[unreleased]: https://github.com/davidwessman/blinka_reporter/compare/v0.5.2...HEAD
[0.5.2]: https://github.com/davidwessman/blinka_reporter/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/davidwessman/blinka_reporter/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/davidwessman/blinka_reporter/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/davidwessman/blinka_reporter/compare/v0.3.6...v0.4.0
[0.3.6]: https://github.com/davidwessman/blinka_reporter/compare/v0.3.5...v0.3.6
[0.3.5]: https://github.com/davidwessman/blinka_reporter/compare/v0.3.4...v0.3.5
Expand Down
5 changes: 3 additions & 2 deletions blinka_reporter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Gem::Specification.new do |gem|
'documentation_uri' => 'https://github.com/davidwessman/blinka_reporter',
'changelog_uri' =>
'https://github.com/davidwessman/blinka_reporter/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/davidwessman/blinka_reporter'
'source_code_uri' => 'https://github.com/davidwessman/blinka_reporter',
'rubygems_mfa_required' => 'true'
}

gem.files = %w[
Expand All @@ -28,7 +29,7 @@ Gem::Specification.new do |gem|
gem.name = 'blinka-reporter'
gem.version = BlinkaReporter::VERSION

gem.add_dependency('httparty', '>= 0.18.1', '< 0.21.0')
gem.add_dependency('httparty', '~> 0.18')
gem.add_development_dependency('dotenv', '~> 2.7.6')
gem.add_development_dependency('minitest', '~> 5.0')
gem.add_development_dependency('mocha', '~> 1.12')
Expand Down
2 changes: 1 addition & 1 deletion lib/blinka_reporter/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BlinkaReporter
VERSION = '0.5.1'.freeze
VERSION = '0.5.2'.freeze
end

0 comments on commit 9ee7d41

Please sign in to comment.