diff --git a/CHANGELOG.md b/CHANGELOG.md index e22de5c..d5301bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ # Change Log +## 1.1.7 - Jul 31, 2022 +- `open` does not throw an Exception, it returns null +- returned deleted methods in UnifiedArchive: `canOpenArchive`, `canOpenType`, `canCreateType`, `getArchiveType`, `detectArchiveType`, `getFileResource`, `getArchiveFormat`, `isFileExists`, `getArchiveSize`, `countCompressedFilesSize`, `countUncompressedFilesSize`. + ## 1.1.6 - Jul 31, 2022 **BC-breaking changes**: - Changed signature: `UnifiedArchive::open($filename, string|null $password = null)` => `UnifiedArchive::open($filename, array $abilities = [], string|null $password = null)`. Right now if second argument is string, it will be treated as password (for BC-compatability). - `open` throws an Exception when format is not recognized or there's no driver that support requested abilities. - `addFiles`/`deleteFiles`/`getComment`/`setComment` throws an Exception when driver does not support this ability. - - Deleted methods in UnifiedArchive: `canOpenArchive`, `canOpenType`, `canCreateType`, `getArchiveType`, `detectArchiveType`, `getFileResource`, `getArchiveFormat`, `isFileExists`, `getArchiveSize`, `countCompressedFilesSize`, `countUncompressedFilesSize`. **New features**: diff --git a/src/UnifiedArchive.php b/src/UnifiedArchive.php index b9a4ae8..f38150e 100644 --- a/src/UnifiedArchive.php +++ b/src/UnifiedArchive.php @@ -19,7 +19,7 @@ */ class UnifiedArchive implements ArrayAccess, Iterator, Countable { - const VERSION = '1.1.6'; + const VERSION = '1.1.7'; /** @var string Type of current archive */ protected $format;