Skip to content

Commit

Permalink
prepare 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Oct 17, 2019
1 parent 8c7a6f7 commit aac2aa3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,26 @@

All Notable changes to `League\Uri\Interfaces` will be documented in this file

## Next - TBD
## 2.0.0 - 2019-10-17

### Added

- `League\Uri\Contract\AuthorityInterface`
- `League\Uri\Contract\FragmentInterface`
- `League\Uri\Contract\DataPathInterface`
- `League\Uri\Contract\DomainInterface`
- `League\Uri\Contract\DomainHostInterface`
- `League\Uri\Contract\FragmentInterface`
- `League\Uri\Contract\HostInterface`
- `League\Uri\Contract\IpHostInterface`
- `League\Uri\Contract\PathInterface`
- `League\Uri\Contract\PortInterface`
- `League\Uri\Contract\QueryInterface`
- `League\Uri\Contract\SegmentedPathInterface`
- `League\Uri\Contract\UriException`
- `League\Uri\Contract\UriComponentInterface`
- `League\Uri\Contract\UriException`
- `League\Uri\Contract\UriInterface`
- `League\Uri\Contract\UserInfoInterface`
- `League\Uri\Exception\EncodingNotFound`
- `League\Uri\Exception\IdnSupportMissing`
- `League\Uri\Exception\OffsetOutOfBounds`
- `League\Uri\Exception\PathTypeNotFound`
- `League\Uri\Exception\SyntaxError`

### Fixed
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,17 @@ public UriComponentInterface::withContent(?string $content): static

Because each URI component has specific needs most have specialized interface which all extends the `UriComponentInterface` interface. The following interfaces also exist:

- `League\Uri\Contract\AuthorityInterface`
- `League\Uri\Contract\DataPathInterface`
- `League\Uri\Contract\DomainHostInterface`
- `League\Uri\Contract\FragmentInterface`
- `League\Uri\Contract\UserInfoInterface`
- `League\Uri\Contract\HostInterface`
- `League\Uri\Contract\DomainInterface`
- `League\Uri\Contract\PortInterface`
- `League\Uri\Contract\AuthorityInterface`
- `League\Uri\Contract\IpHostInterface`
- `League\Uri\Contract\PathInterface`
- `League\Uri\Contract\DataPathInterface`
- `League\Uri\Contract\SegmentedPathInterface`
- `League\Uri\Contract\PortInterface`
- `League\Uri\Contract\QueryInterface`
- `League\Uri\Contract\FragmentInterface`
- `League\Uri\Contract\SegmentedPathInterface`

Contributing
-------
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
],
"require": {
"php" : "^7.1.3",
"php" : "^7.1",
"ext-json": "*"
},
"require-dev": {
Expand All @@ -33,8 +33,8 @@
}
},
"scripts": {
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpstan": "phpstan analyse -l max -c phpstan.src.neon src",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes --ansi",
"phpstan": "phpstan analyse -l max -c phpstan.src.neon src --ansi",
"test": ["@phpcs", "@phpstan"]
},
"scripts-descriptions": {
Expand Down

0 comments on commit aac2aa3

Please sign in to comment.