Skip to content

Commit 61f50ec

Browse files
authored
Merge pull request #278 from jeremykendall/feature/update-rules-public-api
Prepare 5.7.0 release
2 parents d136de3 + c03843e commit 61f50ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All Notable changes to `PHP Domain Parser` **5.x** series will be documented in this file
44

5-
## 5.7.0 - TBD
5+
## 5.7.0 - 2020-08-02
66

77
### Added
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ echo $rules->getICANNDomain('www.ulb.ac.be'); // returns a Pdp\Domain object who
6060
echo $rules->getPrivateDomain('www.ulb.ac.be'); // returns a Pdp\Domain object whose Public Suffix is 'be';
6161
~~~
6262

63-
* Warning: If the Domain is not found an exception is thrown. *
63+
**WARNING: If the Domain can not be resolved an exception is thrown.**
6464

6565
These methods are available since version `5.7.0` to ease the package usage. Prior to this version you could use the
6666
`Rules::resolve` method with an optional `$section` argument to get the same results:
@@ -75,7 +75,7 @@ echo $rules->resolve('www.ulb.ac.be', Rules::ICANN_DOMAINS); // returns a Pdp\Do
7575
echo $rules->resolve('www.ulb.ac.be', Rules::PRIVATE_DOMAINS); // returns a Pdp\Domain object whose Public Suffix is 'be';
7676
~~~
7777

78-
* Warning: If the Domain can not be resolved or in case of error a null `Pdp\Domain` is returned. *
78+
**WARNING: If the Domain can not be resolved or in case of error a null `Pdp\Domain` is returned.**
7979

8080
### Top Level Domains resolution
8181

0 commit comments

Comments
 (0)