diff --git a/.jazzy.yaml b/.jazzy.yaml
index e361976b..9eddaeb7 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.3.0-test.2
+module_version: 4.3.0
copyright: '© 2018 Timofey Solomko'
readme: README.md
github_url: https://github.com/tsolomko/SWCompression
-github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.3.0-test.2
+github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.3.0
theme: fullwidth
custom_categories:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ec4a9532..bba766f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,24 +2,19 @@
## 4.3.0
-### Test 2
-
-- Added `TarContainer.Format` enum which represents various formats of TAR containers.
-- Added `TarContainer.formatOf(container:)` function which returns format for the container.
-- Added `-f`, `--format` option to `tar` command which prints format of TAR container.
-- Added documenation for `Container.Entry` and `ContainerEntry.Info` associated types.
-- [Test] Documentation pages for `ZipExtraField` and `ZipExtraFieldLocation` are now located in "Containers" category.
-
-### 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.
+- Minuimum required version of BitByteData is now 1.2.0.
+- Added APIs which allow to use custom ZIP Extra Fields.
- Added `ZipExtraField` protocol.
- Added `ZipExtraFieldLocation` enum.
- Added `ZipContainer.customExtraFields` property.
- Added `ZipEntryInfo.customExtraFields` property.
+- Added APIs which allow to get information about TAR's format:
+ - Added `TarContainer.Format` enum which represents various formats of TAR containers.
+ - Added `TarContainer.formatOf(container:)` function which returns format of the container.
+ - Added `-f`, `--format` option to swcomp's `tar` command which prints format of TAR container.
- Added `TarEntryInfo.compressionMethod` property which is always equal to `.copy`.
+- Added documenation for `Container.Entry` and `ContainerEntry.Info` associated types.
- 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.
diff --git a/SWCompression.podspec b/SWCompression.podspec
index 878df27a..a0309604 100644
--- a/SWCompression.podspec
+++ b/SWCompression.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "SWCompression"
- s.version = "4.3.0-test.2"
+ s.version = "4.3.0"
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 42b5e6b7..f2425192 100644
--- a/SWCompression.xcodeproj/SWCompression.plist
+++ b/SWCompression.xcodeproj/SWCompression.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 4.3.0-test.2
+ 4.3.0
CFBundleVersion
- 61
+ 62
NSHumanReadableCopyright
Copyright © 2018 Timofey Solomko. All rights reserved.
diff --git a/SWCompression.xcodeproj/TestSWCompression.plist b/SWCompression.xcodeproj/TestSWCompression.plist
index 7d5b57aa..41412361 100644
--- a/SWCompression.xcodeproj/TestSWCompression.plist
+++ b/SWCompression.xcodeproj/TestSWCompression.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 4.3.0-test.2
+ 4.3.0
CFBundleVersion
- 61
+ 62
diff --git a/SWCompression.xcodeproj/project.pbxproj b/SWCompression.xcodeproj/project.pbxproj
index ebf5cd29..800d1067 100644
--- a/SWCompression.xcodeproj/project.pbxproj
+++ b/SWCompression.xcodeproj/project.pbxproj
@@ -1159,7 +1159,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 61;
+ CURRENT_PROJECT_VERSION = 62;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
@@ -1216,7 +1216,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CURRENT_PROJECT_VERSION = 61;
+ CURRENT_PROJECT_VERSION = 62;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
"FRAMEWORK_SEARCH_PATHS[sdk=appletvos*]" = "\"$(SRCROOT)/Carthage/Build/tvOS\"";
@@ -1254,7 +1254,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 61;
+ DYLIB_CURRENT_VERSION = 62;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1282,7 +1282,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 61;
+ DYLIB_CURRENT_VERSION = 62;
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 b1efa384..86714538 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.3.0-test.2",
+let cli = CLI(name: "swcomp", version: "4.3.0",
description: """
swcomp - small command-line client for SWCompression framework.
Serves as an example of SWCompression usage.