Skip to content

Commit f2eb340

Browse files
authored
Merge pull request #146 from mocktools/develop
Ruby DnsMock v1.7.2
2 parents ebb3cfb + d1db1d5 commit f2eb340

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.circleci/gemspecs/compatible

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
1717
spec.require_paths = %w[lib]
1818

19-
spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
19+
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'
2020

2121
spec.add_development_dependency 'ffaker'
2222
spec.add_development_dependency 'net-ftp' if ::Gem::Version.new(::RUBY_VERSION) >= ::Gem::Version.new('3.1.0')

.circleci/gemspecs/latest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
1717
spec.require_paths = %w[lib]
1818

19-
spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
19+
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'
2020

2121
spec.add_development_dependency 'bundler-audit', '~> 0.9.1'
2222
spec.add_development_dependency 'fasterer', '~> 0.11.0'
@@ -27,8 +27,8 @@ Gem::Specification.new do |spec|
2727
spec.add_development_dependency 'reek', '~> 6.3'
2828
spec.add_development_dependency 'rspec', '~> 3.13'
2929
spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
30-
spec.add_development_dependency 'rubocop', '~> 1.63', '>= 1.63.2'
30+
spec.add_development_dependency 'rubocop', '~> 1.63', '>= 1.63.5'
3131
spec.add_development_dependency 'rubocop-performance', '~> 1.21'
32-
spec.add_development_dependency 'rubocop-rspec', '~> 2.29', '>= 2.29.1'
32+
spec.add_development_dependency 'rubocop-rspec', '~> 2.29', '>= 2.29.2'
3333
spec.add_development_dependency 'simplecov', '~> 0.22.0'
3434
end

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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).
44

5+
## [1.7.2] - 2024-05-13
6+
7+
### Updated
8+
9+
- Updated gem runtime/development dependencies
10+
- Updated gem version
11+
512
## [1.7.1] - 2024-04-21
613

714
### Updated

dns_mock.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(bin|lib)/|.ruby-version|dns_mock.gemspec|LICENSE}) }
3030
spec.require_paths = %w[lib]
3131

32-
spec.add_runtime_dependency 'simpleidn', '~> 0.2.1'
32+
spec.add_runtime_dependency 'simpleidn', '~> 0.2.2'
3333

3434
spec.add_development_dependency 'ffaker', ffaker_version
3535
spec.add_development_dependency 'net-ftp', '~> 0.3.4' if current_ruby_version >= ::Gem::Version.new('3.1.0')

lib/dns_mock/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module DnsMock
4-
VERSION = '1.7.1'
4+
VERSION = '1.7.2'
55
end

0 commit comments

Comments
 (0)