Skip to content

Commit 65dbdd5

Browse files
authored
Merge pull request #133 from mocktools/develop
Ruby DnsMock v1.6.2
2 parents 07cf4bb + fec4ec7 commit 65dbdd5

File tree

9 files changed

+25
-14
lines changed

9 files changed

+25
-14
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ defaults: &defaults
88
- image: cimg/ruby:<< parameters.ruby-version >>
99

1010
orbs:
11-
ruby: circleci/[email protected].0
11+
ruby: circleci/[email protected].1
1212

1313
references:
1414
bundle_install: &bundle_install
@@ -182,15 +182,15 @@ workflows:
182182
- linters-ruby:
183183
matrix:
184184
parameters:
185-
ruby-version: ["3.2-node"]
185+
ruby-version: ["3.3-node"]
186186
- tests-ruby:
187187
matrix:
188188
parameters:
189-
ruby-version: ["3.2"]
189+
ruby-version: ["3.3"]
190190
- compatibility-ruby:
191191
matrix:
192192
parameters:
193-
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1"]
193+
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2"]
194194
- rubygems-deps-ruby:
195195
matrix:
196196
parameters:

.circleci/gemspecs/compatible

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = DnsMock::VERSION
88
spec.authors = ['Vladislav Trotsenko']
99
spec.email = %w[[email protected]]
10-
spec.summary = %(dns_mock)
10+
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
1111
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
1212
spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
1313
spec.license = 'MIT'

.circleci/gemspecs/latest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = DnsMock::VERSION
88
spec.authors = ['Vladislav Trotsenko']
99
spec.email = %w[[email protected]]
10-
spec.summary = %(dns_mock)
10+
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
1111
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
1212
spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'
1313
spec.license = 'MIT'
@@ -24,11 +24,11 @@ Gem::Specification.new do |spec|
2424
spec.add_development_dependency 'net-ftp', '~> 0.3.4'
2525
spec.add_development_dependency 'pry-byebug', '~> 3.10', '>= 3.10.1'
2626
spec.add_development_dependency 'rake', '~> 13.1'
27-
spec.add_development_dependency 'reek', '~> 6.2'
27+
spec.add_development_dependency 'reek', '~> 6.3'
2828
spec.add_development_dependency 'rspec', '~> 3.12'
2929
spec.add_development_dependency 'rspec-dns', '~> 0.1.8'
30-
spec.add_development_dependency 'rubocop', '~> 1.59'
31-
spec.add_development_dependency 'rubocop-performance', '~> 1.20', '>= 1.20.1'
30+
spec.add_development_dependency 'rubocop', '~> 1.60', '>= 1.60.2'
31+
spec.add_development_dependency 'rubocop-performance', '~> 1.20', '>= 1.20.2'
3232
spec.add_development_dependency 'rubocop-rspec', '~> 2.26', '>= 2.26.1'
3333
spec.add_development_dependency 'simplecov', '~> 0.22.0'
3434
end

.codeclimate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ checks:
99
plugins:
1010
rubocop:
1111
enabled: true
12-
channel: rubocop-1-59
12+
channel: rubocop-1-60
1313
config:
1414
file: .circleci/linter_configs/.rubocop.yml
1515

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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.6.2] - 2024-01-31
6+
7+
### Added
8+
9+
- Added and tested Ruby 3.3.x support
10+
11+
### Updated
12+
13+
- Updated gemspecs
14+
- Updated gem version
15+
516
## [1.6.1] - 2024-01-07
617

718
### Updated

dns_mock.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
88
spec.authors = ['Vladislav Trotsenko']
99
spec.email = %w[[email protected]]
1010

11-
spec.summary = %(dns_mock)
11+
spec.summary = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment)
1212
spec.description = %(💎 Ruby DNS mock. Mimic any DNS records for your test environment and even more.)
1313

1414
spec.homepage = 'https://github.com/mocktools/ruby-dns-mock'

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.6.1'
4+
VERSION = '1.6.2'
55
end

spec/support/config/pry.rb

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

3-
require 'pry' if ::RUBY_VERSION[/\A3\.2.+\z/]
3+
require 'pry' if ::RUBY_VERSION[/\A3\.3.+\z/]

spec/support/config/simplecov.rb

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

3-
if ::RUBY_VERSION[/\A3\.2.+\z/]
3+
if ::RUBY_VERSION[/\A3\.3.+\z/]
44
require 'simplecov'
55

66
SimpleCov.minimum_coverage(100)

0 commit comments

Comments
 (0)