diff --git a/.jazzy.yaml b/.jazzy.yaml
index db7d4de5..bab8bf6b 100644
--- a/.jazzy.yaml
+++ b/.jazzy.yaml
@@ -3,11 +3,11 @@ sourcekitten_sourcefile: docs.json
clean: true
author: Timofey Solomko
module: SWCompression
-module_version: 4.2.2
+module_version: 4.3.0-test.1
copyright: '© 2018 Timofey Solomko'
readme: README.md
github_url: https://github.com/tsolomko/SWCompression
-github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.2.2
+github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.3.0-test.1
theme: fullwidth
custom_categories:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dddbb2e9..58d2419f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## 4.3.0
+
+### Test 1
+
+- Updated to support Swift 4.1.
+- Minuimum required version of BitByteData is now 1.2.0-test.3.
+- Added APIs to enable support of custom ZIP Extra Fields.
+ - Added `ZipExtraField` protocol.
+ - Added `ZipExtraFieldLocation` enum.
+ - Added `ZipContainer.customExtraFields` property.
+ - Added `ZipEntryInfo.customExtraFields` property.
+- Added `TarEntryInfo.compressionMethod` property which is always equal to `.copy`.
+- Reverted "disable symbol stripping" change from 4.2.0 update, since underlying problem was fixed in Carthage.
+- Benchmarks changes:
+ - Iterations number increased from 6 to 10.
+ - There is now a zeroth iteration which is excluded from averages.
+
## 4.2.2
- Fixed skipping entries in `SevenZipContainer.open(container:)` in some rare cases.
diff --git a/SWCompression.podspec b/SWCompression.podspec
index 0a68532f..4f53c122 100644
--- a/SWCompression.podspec
+++ b/SWCompression.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SWCompression"
- s.version = "4.2.2"
+ s.version = "4.3.0-test.1"
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."
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
s.swift_version = "4.1"
- s.dependency "BitByteData", "~> 1.1"
+ s.dependency "BitByteData", "~> 1.2.0-test.3"
s.subspec "Deflate" do |sp|
sp.source_files = "Sources/{Deflate/*,Common/*}.swift"
diff --git a/SWCompression.xcodeproj/SWCompression.plist b/SWCompression.xcodeproj/SWCompression.plist
index 328506ea..4f4168aa 100644
--- a/SWCompression.xcodeproj/SWCompression.plist
+++ b/SWCompression.xcodeproj/SWCompression.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 4.2.2
+ 4.3.0-test.1
CFBundleVersion
- 59
+ 60
NSHumanReadableCopyright
Copyright © 2018 Timofey Solomko. All rights reserved.
diff --git a/SWCompression.xcodeproj/TestSWCompression.plist b/SWCompression.xcodeproj/TestSWCompression.plist
index 8b00954d..f69d89da 100644
--- a/SWCompression.xcodeproj/TestSWCompression.plist
+++ b/SWCompression.xcodeproj/TestSWCompression.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 4.2.2
+ 4.3.0-test.1
CFBundleVersion
- 59
+ 60
diff --git a/SWCompression.xcodeproj/project.pbxproj b/SWCompression.xcodeproj/project.pbxproj
index dd797a5d..bb4480ac 100644
--- a/SWCompression.xcodeproj/project.pbxproj
+++ b/SWCompression.xcodeproj/project.pbxproj
@@ -1163,7 +1163,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 59;
+ CURRENT_PROJECT_VERSION = 60;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
@@ -1220,7 +1220,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 59;
+ CURRENT_PROJECT_VERSION = 60;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
"FRAMEWORK_SEARCH_PATHS[sdk=appletvos*]" = "\"$(SRCROOT)/Carthage/Build/tvOS\"";
@@ -1258,7 +1258,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 59;
+ DYLIB_CURRENT_VERSION = 60;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1286,7 +1286,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 59;
+ DYLIB_CURRENT_VERSION = 60;
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 5634f3eb..5517add8 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.2.2",
+let cli = CLI(name: "swcomp", version: "4.3.0-test.1",
description: """
swcomp - small command-line client for SWCompression framework.
Serves as an example of SWCompression usage.