Skip to content

Commit 59d1c90

Browse files
committed
Prepare for release
1 parent ab9b438 commit 59d1c90

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The current releases are numbered `0.x.y`. When a non-breaking change is introdu
3636

3737
**When a breaking change is introduced, a new `0.x` version cycle is always started.**
3838

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.*`.
4040

4141
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.
4242

@@ -60,15 +60,15 @@ Misplaced or mismatched separators are not considered an error and will be ignor
6060
$formatter->format('GB', 'WC-2E9RZ'); // WC2E 9RZ
6161
```
6262

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:
6464

6565
```php
6666
$formatter->format('XX', '12345'); // UnknownCountryException
6767
```
6868

6969
Note that a country with no postcode system is considered as unknown, even if the country code is a valid ISO 3166 code.
7070

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:
7272

7373
```php
7474
$formatter->format('GB', 'ABCDEFG'); // InvalidPostcodeException

0 commit comments

Comments
 (0)