dnsimple 9.0.1 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10223d4a1cffc52034b6de3ed1505a3d44c3c27b24defff73926bc614f852e2f
4
- data.tar.gz: b7ce3fb01c65ec3f18925f2b29fb891f585b4af2dbfb385b8089424317bf2771
3
+ metadata.gz: 717f1a8443a707774595d0f3f4fc0ebeeb1383bd91424e1fdca0e46ba9fd9043
4
+ data.tar.gz: 0f97c2fa6be76c363bb2a1f6ac793553c051a55f6e191597c0aaf2669c4d3b32
5
5
  SHA512:
6
- metadata.gz: b9ee7d535a4d68408633052eae655fb8993899647b141a891c315bffb3087730645519955cf755ac5aa71fc03c2d06e6ff63844a0fdadf32830cfa6cc2e26f40
7
- data.tar.gz: 0e85c8d9a11d3e82d4a674471fe9ad817f7d229ef430958b471785ac3f87d23ba3c373fac07b67a9e046f1e4c1a9133776546f086e9c57194a9c9567254c64ec
6
+ metadata.gz: 270a8d238b4e9bca275f407c2643152892288b8328fa0e1df43750b2a180f172e38597697cc2d936ca9eb0eb284bcaa0f80d534692d6ee8ca3cbde0d3f068dda
7
+ data.tar.gz: 8c0bcc9b2b79848ab07c440e0bda804284918e0cfe668c2d838a388609825ff5d200569d26198aed4d6a5545403f9a026c04b5a10d2fc88987b0988bf0b24608
@@ -18,7 +18,7 @@ jobs:
18
18
  - name: Checkout Code
19
19
  uses: actions/checkout@v4
20
20
  - name: Run markdownlint-cli
21
- uses: nosborn/github-action-markdown-cli@v3.3.0
21
+ uses: nosborn/github-action-markdown-cli@v3.4.0
22
22
  with:
23
23
  files: .
24
24
  config_file: ".markdownlint.yaml"
@@ -30,9 +30,9 @@ jobs:
30
30
  strategy:
31
31
  matrix:
32
32
  ruby-version:
33
- - '3.1'
34
33
  - '3.2'
35
34
  - '3.3'
35
+ - '3.4'
36
36
  - 'ruby-head'
37
37
  - 'truffleruby-head'
38
38
  steps:
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).
4
4
 
5
5
  ## main
6
6
 
7
+ ## 10.0.0
8
+
9
+ - CHANGED: Minimum Ruby version is now 3.2
10
+
7
11
  ## 9.0.1
8
12
 
9
13
  - NEW: Added `alias_email` and `destination_email` to `EmailForward`
data/Gemfile CHANGED
@@ -5,10 +5,10 @@ source 'https://rubygems.org'
5
5
  gemspec
6
6
 
7
7
  gem 'coveralls', require: false
8
- gem 'rubocop', '1.69.0', require: false
9
- gem 'rubocop-performance', '1.23.0', require: false
10
- gem 'rubocop-rake', '0.6.0', require: false
11
- gem 'rubocop-rspec', '3.2.0', require: false
8
+ gem 'rubocop', '1.75.4', require: false
9
+ gem 'rubocop-performance', '1.25.0', require: false
10
+ gem 'rubocop-rake', '0.7.1', require: false
11
+ gem 'rubocop-rspec', '3.6.0', require: false
12
12
  gem "base64", "~> 0.2.0"
13
13
  gem "bigdecimal", "~> 3.1"
14
14
  gem "csv", "~> 3.2"
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2010-2024 DNSimple Corporation
3
+ Copyright (c) 2010-2025 DNSimple Corporation
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -10,7 +10,7 @@ We provide a full API and an easy-to-use web interface so you can get your domai
10
10
 
11
11
  ## Requirements
12
12
 
13
- - Ruby: MRI > 3.1+
13
+ - Ruby: MRI > 3.2+
14
14
 
15
15
  ## Installation
16
16
 
@@ -23,7 +23,7 @@ gem install dnsimple
23
23
  Or use Bundler and define it as a dependency in your Gemfile:
24
24
 
25
25
  ```ruby
26
- gem 'dnsimple', '~> 8.0'
26
+ gem 'dnsimple', '~> 10.0'
27
27
  ```
28
28
 
29
29
  ## Documentation
@@ -110,4 +110,4 @@ puts response.data
110
110
 
111
111
  ## License
112
112
 
113
- Copyright (c) 2010-2024 DNSimple Corporation. This is Free Software distributed under the MIT license.
113
+ Copyright (c) 2010-2025 DNSimple Corporation. This is Free Software distributed under the MIT license.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dnsimple
4
4
 
5
- VERSION = "9.0.1"
5
+ VERSION = "10.0.0"
6
6
 
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.1
4
+ version: 10.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - DNSimple
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-12 00:00:00.000000000 Z
11
+ date: 2025-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty