You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ The current releases are numbered `0.x.y`. When a non-breaking change is introdu
36
36
37
37
**When a breaking change is introduced, a new `0.x` version cycle is always started.**
38
38
39
-
It is therefore safe to lock your project to a given release cycle, such as `0.5.*`.
39
+
It is therefore safe to lock your project to a given release cycle, such as `0.6.*`.
40
40
41
41
If you need to upgrade to a newer release cycle, check the [release history](https://github.com/brick/postcode/releases) for a list of changes introduced by each further `0.x.0` version.
42
42
@@ -60,15 +60,15 @@ Misplaced or mismatched separators are not considered an error and will be ignor
60
60
$formatter->format('GB', 'WC-2E9RZ'); // WC2E 9RZ
61
61
```
62
62
63
-
* If `format()` is called with an unknown country code, an [UnknownCountryException](https://github.com/brick/postcode/blob/master/src/UnknownCountryException.php) is thrown:
63
+
* If `format()` is called with an unknown country code, an [UnknownCountryException](https://github.com/brick/postcode/blob/0.6.0/src/Exception/UnknownCountryException.php) is thrown:
Note that a country with no postcode system is considered as unknown, even if the country code is a valid ISO 3166 code.
70
70
71
-
* If `format()` is called with an invalid postcode for the given country, an [InvalidPostcodeException](https://github.com/brick/postcode/blob/master/src/InvalidPostcodeException.php) is thrown:
71
+
* If `format()` is called with an invalid postcode for the given country, an [InvalidPostcodeException](https://github.com/brick/postcode/blob/0.6.0/src/Exception/InvalidPostcodeException.php) is thrown:
0 commit comments