Skip to content

Commit

Permalink
Merge pull request #146 from mocktools/develop
Browse files Browse the repository at this point in the history
Ruby DnsMock v1.7.2
  • Loading branch information
bestwebua authored May 13, 2024
2 parents ebb3cfb + d1db1d5 commit f2eb340
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/gemspecs/compatible
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'

spec.add_development_dependency 'ffaker'
spec.add_development_dependency 'net-ftp' if ::Gem::Version.new(::RUBY_VERSION) >= ::Gem::Version.new('3.1.0')
Expand Down
6 changes: 3 additions & 3 deletions .circleci/gemspecs/latest
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'

spec.add_development_dependency 'bundler-audit', '~> 0.9.1'
spec.add_development_dependency 'fasterer', '~> 0.11.0'
Expand All @@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'reek', '~> 6.3'
spec.add_development_dependency 'rspec', '~> 3.13'
spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
spec.add_development_dependency 'rubocop', '~> 1.63', '>= 1.63.2'
spec.add_development_dependency 'rubocop', '~> 1.63', '>= 1.63.5'
spec.add_development_dependency 'rubocop-performance', '~> 1.21'
spec.add_development_dependency 'rubocop-rspec', '~> 2.29', '>= 2.29.1'
spec.add_development_dependency 'rubocop-rspec', '~> 2.29', '>= 2.29.2'
spec.add_development_dependency 'simplecov', '~> 0.22.0'
end
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.7.2] - 2024-05-13

### Updated

- Updated gem runtime/development dependencies
- Updated gem version

## [1.7.1] - 2024-04-21

### Updated
Expand Down
2 changes: 1 addition & 1 deletion dns_mock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin|lib)/|.ruby-version|dns_mock.gemspec|LICENSE}) }
spec.require_paths = %w[lib]

spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'

spec.add_development_dependency 'ffaker', ffaker_version
spec.add_development_dependency 'net-ftp', '~> 0.3.4' if current_ruby_version >= ::Gem::Version.new('3.1.0')
Expand Down
2 changes: 1 addition & 1 deletion lib/dns_mock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DnsMock
VERSION = '1.7.1'
VERSION = '1.7.2'
end

0 comments on commit f2eb340

Please sign in to comment.