diff --git a/.jazzy.yaml b/.jazzy.yaml
index 5c0b8bc5..ead4a9bd 100644
--- a/.jazzy.yaml
+++ b/.jazzy.yaml
@@ -3,11 +3,11 @@ sourcekitten_sourcefile: docs.json
clean: false
author: Timofey Solomko
module: SWCompression
-module_version: 4.8.1
+module_version: 4.8.2
copyright: '© 2022 Timofey Solomko'
readme: README.md
github_url: https://github.com/tsolomko/SWCompression
-github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.1
+github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.2
theme: fullwidth
custom_categories:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e659cac..015b1914 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## 4.8.2
+
+- Swift 5.1 is no longer supported.
+- Increased minimum deployment versions (when installed via CocoaPods or Carthage) for Darwin platforms: macOS from 10.10
+to 10.13, iOS from 9.0 to 11.0, tvOS from 9.0 to 11.0, and watchOS from 2.0 to 4.0.
+- Fixed issues when building for iOS either directly or via Carthage on systems with Xcode 14.
+- Fixed potential crashes that could occur when decompressing truncated Deflate inputs.
+- swcomp changes:
+ - swcomp is now enabled by default in Swift Package Manager manifest.
+ - Added `-l`, `--list` option to container commands (`7z`, `tar`, and `zip`).
+ - Systematized error exit codes and messages.
+ - Added `-s`, `--save` option to the `benchmark` command.
+ - Added `-c`, `--compare` option to the `benchmark` command.
+ - Added `-i`, `--iteration-count` option to the `benchmark` command.
+ - Added `-W`, `--no-warmup` option to the `benchmark` command.
+ - Benchmarks now output standard deviation instead of speed uncertainty.
+
## 4.8.1
- Fix incorrect detection of truncated GZip archives.
diff --git a/SWCompression.podspec b/SWCompression.podspec
index 74ea9875..e99e1f00 100644
--- a/SWCompression.podspec
+++ b/SWCompression.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SWCompression"
- s.version = "4.8.1"
+ s.version = "4.8.2"
s.summary = "A framework with functions for working with compression, archives and containers."
s.description = "A framework with (de)compression algorithms and functions for processing various archives and containers."
diff --git a/SWCompression.xcodeproj/SWCompression.plist b/SWCompression.xcodeproj/SWCompression.plist
index cd46feeb..f0328189 100644
--- a/SWCompression.xcodeproj/SWCompression.plist
+++ b/SWCompression.xcodeproj/SWCompression.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 4.8.1
+ 4.8.2
CFBundleVersion
- 86
+ 87
NSHumanReadableCopyright
Copyright © 2022 Timofey Solomko
diff --git a/SWCompression.xcodeproj/TestSWCompression.plist b/SWCompression.xcodeproj/TestSWCompression.plist
index b749e372..921e4d3e 100644
--- a/SWCompression.xcodeproj/TestSWCompression.plist
+++ b/SWCompression.xcodeproj/TestSWCompression.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 4.8.1
+ 4.8.2
CFBundleVersion
- 86
+ 87
diff --git a/SWCompression.xcodeproj/project.pbxproj b/SWCompression.xcodeproj/project.pbxproj
index 2e97015c..befe7713 100644
--- a/SWCompression.xcodeproj/project.pbxproj
+++ b/SWCompression.xcodeproj/project.pbxproj
@@ -1516,7 +1516,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 86;
+ CURRENT_PROJECT_VERSION = 87;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
EAGER_LINKING = YES;
@@ -1601,7 +1601,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 86;
+ CURRENT_PROJECT_VERSION = 87;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EAGER_LINKING = YES;
@@ -1666,7 +1666,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 86;
+ DYLIB_CURRENT_VERSION = 87;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1693,7 +1693,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 86;
+ DYLIB_CURRENT_VERSION = 87;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
diff --git a/Sources/swcomp/main.swift b/Sources/swcomp/main.swift
index 3e8ac60a..0b64009d 100644
--- a/Sources/swcomp/main.swift
+++ b/Sources/swcomp/main.swift
@@ -7,7 +7,7 @@ import Foundation
import SWCompression
import SwiftCLI
-let cli = CLI(name: "swcomp", version: "4.8.1",
+let cli = CLI(name: "swcomp", version: "4.8.2",
description: """
swcomp - a small command-line client for SWCompression framework.
Serves as an example of SWCompression usage.