public_suffix 5.1.1 → 6.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: f95fd278200cbe3922d07b90ca7b51231509770ff2df64b45f1f0dd0aae532b5
4
- data.tar.gz: 8ca654313480fdb64b80d1ac2e54150cc594d731a88dfee4a125c8a32bb6aecc
3
+ metadata.gz: 40bcf36bd2164ec674ef3f843b382c79fb8b0a6f76b4a45a823c53504028b84b
4
+ data.tar.gz: 0bfa2dbc451520978a7d49bd72381f6ab9816375c5ce064a4881d85eafc15081
5
5
  SHA512:
6
- metadata.gz: e7f9ae38d463e8ef8355e033606d5f0a7689976054127f9d5a32b9e0af0bca7f54fa3287678d85def68e73a3fc466fc01d4b39db511386e121ac8bab1fe8c728
7
- data.tar.gz: 22bf9f457b5d961de5a8e40de03558bdca814bf565343ed0024be69b71b789b538ca497b856bfa9f294b9cbfcf4c9cf48d9fd7670628f5e0684dc05afa528d1c
6
+ metadata.gz: 8e54cffe191c582a9704b595f5c75dbf12c82d5b1dd837ec2df79b985125f9f5fb2264c91f26f7b604895745152287661361b055301cb99316fe3310953d23f8
7
+ data.tar.gz: a9c105fbcc1725d6b64be9411268151253546275e41ef9ec3558c5537bf12aec6851410348203e92cb0df7729778eaf358c90c77e2833a23377831001c2d28cc
data/CHANGELOG.md CHANGED
@@ -2,17 +2,37 @@
2
2
 
3
3
  This project uses [Semantic Versioning 2.0.0](https://semver.org/).
4
4
 
5
+
6
+ ## 6.0.0
7
+
8
+ Same as 5.1.0. Re-releasing as a major version change due to a major ruby version requirement change.
9
+
10
+ ### Changed
11
+
12
+ - Updated definitions.
13
+ - Minimum Ruby version is 3.0
14
+
15
+
5
16
  ## 5.1.1
6
17
 
7
18
  No significant changes. Releasing a mini version to address 5.1.0 release with major ruby requirement change (GH-315).
8
19
 
9
20
 
21
+ ## 5.1.0
22
+
23
+ ### Changed
24
+
25
+ - Updated definitions.
26
+ - Minimum Ruby version is 3.0
27
+
28
+
10
29
  ## 5.0.5
11
30
 
12
31
  ### Changed
13
32
 
14
33
  - Updated definitions.
15
34
 
35
+
16
36
  ## 5.0.4
17
37
 
18
38
  ### Changed
@@ -20,18 +40,21 @@ No significant changes. Releasing a mini version to address 5.1.0 release with m
20
40
  - Reduced .gem file size (GH-258). [Thanks @ybiquitous]
21
41
  - Updated definitions.
22
42
 
43
+
23
44
  ## 5.0.3
24
45
 
25
46
  ### Fixed
26
47
 
27
48
  - Fixed automated release workflow.
28
49
 
50
+
29
51
  ## 5.0.2
30
52
 
31
53
  ### Changed
32
54
 
33
55
  - Updated definitions.
34
56
 
57
+
35
58
  ## 5.0.1
36
59
 
37
60
  ### Changed
@@ -44,7 +67,6 @@ No significant changes. Releasing a mini version to address 5.1.0 release with m
44
67
  ### Changed
45
68
 
46
69
  - Minimum Ruby version is 2.6
47
-
48
70
  - Updated definitions.
49
71
 
50
72
 
data/README.md CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  ## Requirements
18
18
 
19
- <tt>PublicSuffix</tt> requires **Ruby >= 2.6**. For an older versions of Ruby use a previous release.
19
+ <tt>PublicSuffix</tt> requires **Ruby >= 3.0**. For an older versions of Ruby use a previous release.
20
20
 
21
21
 
22
22
  ## Installation
@@ -33,8 +33,6 @@ Or use Bundler and define it as a dependency in your `Gemfile`:
33
33
  gem 'public_suffix'
34
34
  ```
35
35
 
36
- If you are upgrading to 2.0, see [2.0-Upgrade.md](2.0-Upgrade.md).
37
-
38
36
  ## Usage
39
37
 
40
38
  Extract the domain out from a name:
data/SECURITY.md CHANGED
@@ -4,8 +4,7 @@
4
4
 
5
5
  Security updates are provided only for the current minor version.
6
6
 
7
- If you are using a previous minor version, we recommend to upgrade to the current minor version.
8
- This project uses [semantic versioning](https://semver.org/), therefore you can upgrade to a more recent minor version without incurring into breaking changes.
7
+ If you are using a previous minor version, we recommend to upgrade to the current minor version. This project uses [semantic versioning](https://semver.org/), therefore you can upgrade to a more recent minor version without incurring into breaking changes.
9
8
 
10
9
  Exceptionally, we may support previous minor versions upon request if there are significant reasons preventing to immediately switch the latest minor version.
11
10