public_suffix 5.0.5 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e873ba762a6d3b55530c3413b1b714eb05d97d0541f61c080bccc634c65b2659
4
- data.tar.gz: d1d949bba0cbcc610bfb1a386f298a85803a4a27921e22be3f7991e2c0a3eab7
3
+ metadata.gz: 40bcf36bd2164ec674ef3f843b382c79fb8b0a6f76b4a45a823c53504028b84b
4
+ data.tar.gz: 0bfa2dbc451520978a7d49bd72381f6ab9816375c5ce064a4881d85eafc15081
5
5
  SHA512:
6
- metadata.gz: 53bae629c847a3c58da32ee48e5f04b8daa15f0f438f8fc18c5f9b2500258ed3cecd2e53b89e1d1253ac4139f53f6b64ec385529b5ca4af5e36f19a4836cc00a
7
- data.tar.gz: 877b7c9bd4561b0570751017f66189559d5f6108fa7285d5f045cad80464e1d0c64a3fd213e80fecc4c4fdf115942280c29d70e8ae36eb818be5b5b33478c724
6
+ metadata.gz: 8e54cffe191c582a9704b595f5c75dbf12c82d5b1dd837ec2df79b985125f9f5fb2264c91f26f7b604895745152287661361b055301cb99316fe3310953d23f8
7
+ data.tar.gz: a9c105fbcc1725d6b64be9411268151253546275e41ef9ec3558c5537bf12aec6851410348203e92cb0df7729778eaf358c90c77e2833a23377831001c2d28cc
data/CHANGELOG.md CHANGED
@@ -2,12 +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
+
16
+ ## 5.1.1
17
+
18
+ No significant changes. Releasing a mini version to address 5.1.0 release with major ruby requirement change (GH-315).
19
+
20
+
21
+ ## 5.1.0
22
+
23
+ ### Changed
24
+
25
+ - Updated definitions.
26
+ - Minimum Ruby version is 3.0
27
+
28
+
5
29
  ## 5.0.5
6
30
 
7
31
  ### Changed
8
32
 
9
33
  - Updated definitions.
10
34
 
35
+
11
36
  ## 5.0.4
12
37
 
13
38
  ### Changed
@@ -15,18 +40,21 @@ This project uses [Semantic Versioning 2.0.0](https://semver.org/).
15
40
  - Reduced .gem file size (GH-258). [Thanks @ybiquitous]
16
41
  - Updated definitions.
17
42
 
43
+
18
44
  ## 5.0.3
19
45
 
20
46
  ### Fixed
21
47
 
22
48
  - Fixed automated release workflow.
23
49
 
50
+
24
51
  ## 5.0.2
25
52
 
26
53
  ### Changed
27
54
 
28
55
  - Updated definitions.
29
56
 
57
+
30
58
  ## 5.0.1
31
59
 
32
60
  ### Changed
@@ -39,7 +67,6 @@ This project uses [Semantic Versioning 2.0.0](https://semver.org/).
39
67
  ### Changed
40
68
 
41
69
  - Minimum Ruby version is 2.6
42
-
43
70
  - Updated definitions.
44
71
 
45
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