Skip to content

Commit d9775db

Browse files
authored
Merge pull request #285 from jeremykendall/develop
Prepare 5.7.1 release
2 parents 5130bad + ad59a10 commit d9775db

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [nyamsprod]

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

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

5+
## 5.7.1 - 2020-08-24
6+
7+
### Added
8+
9+
- None
10+
11+
### Fixed
12+
13+
- Cache throws when cache directory doesn't exist [#280](https://github.com/jeremykendall/php-domain-parser/issues/280)
14+
15+
### Deprecated
16+
17+
- None
18+
19+
### Removed
20+
21+
- None
22+
523
## 5.7.0 - 2020-08-02
624

725
### Added
@@ -15,6 +33,7 @@ All Notable changes to `PHP Domain Parser` **5.x** series will be documented in
1533

1634
- Improve type hinting and return type by dropping EOL PHP versions support.
1735
- Improve development environment by dropping EOL PHP versions support.
36+
- Composer script
1837

1938
### Deprecated
2039

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
"homepage": "https://github.com/jeremykendall/php-domain-parser/graphs/contributors"
2424
}
2525
],
26+
"funding": [
27+
{
28+
"type": "github",
29+
"url": "https://github.com/sponsors/nyamsprod"
30+
}
31+
],
2632
"bin": [
2733
"bin/update-psl"
2834
],

src/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function __construct(string $cache_path = '')
8383
{
8484
if ('' === $cache_path) {
8585
/** @var string $cache_path */
86-
$cache_path = realpath(dirname(__DIR__).DIRECTORY_SEPARATOR.'data');
86+
$cache_path = realpath(dirname(__DIR__)).DIRECTORY_SEPARATOR.'data';
8787
}
8888

8989
if (!file_exists($cache_path) && file_exists(dirname($cache_path))) {

0 commit comments

Comments
 (0)