Skip to content

Commit 2efdb3e

Browse files
committed
Prepare for 4.6.1 release
1 parent 324a2da commit 2efdb3e

7 files changed

Lines changed: 19 additions & 12 deletions

File tree

.jazzy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ sourcekitten_sourcefile: docs.json
33
clean: false
44
author: Timofey Solomko
55
module: SWCompression
6-
module_version: 4.6.0
6+
module_version: 4.6.1
77
copyright: '© 2021 Timofey Solomko'
88
readme: README.md
99
github_url: https://github.com/tsolomko/SWCompression
10-
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.6.0
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.6.1
1111
theme: fullwidth
1212

1313
custom_categories:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 4.6.1
4+
5+
- Fixed a crash in LZMA2 when trying to process an empty `Data`.
6+
- swcomp changes:
7+
- Added `benchmark create-tar` benchmarking command.
8+
- Benchmarking results are now printed in the units of speed instead of time elapsed.
9+
310
## 4.6.0
411

512
- Swift 4.2 is no longer supported.

SWCompression.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "SWCompression"
4-
s.version = "4.6.0"
4+
s.version = "4.6.1"
55
s.summary = "A framework with functions for working with compression, archives and containers."
66

77
s.description = "A framework with (de)compression algorithms and functions for processing various archives and containers."

SWCompression.xcodeproj/SWCompression.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.6.0</string>
18+
<string>4.6.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>80</string>
20+
<string>81</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2021 Timofey Solomko</string>
2323
</dict>

SWCompression.xcodeproj/TestSWCompression.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.6.0</string>
18+
<string>4.6.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>80</string>
20+
<string>81</string>
2121
</dict>
2222
</plist>

SWCompression.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,7 @@
12821282
CLANG_WARN_SUSPICIOUS_MOVE = YES;
12831283
CLANG_WARN_UNREACHABLE_CODE = YES;
12841284
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1285-
CURRENT_PROJECT_VERSION = 80;
1285+
CURRENT_PROJECT_VERSION = 81;
12861286
DEBUG_INFORMATION_FORMAT = dwarf;
12871287
ENABLE_STRICT_OBJC_MSGSEND = YES;
12881288
ENABLE_TESTABILITY = YES;
@@ -1363,7 +1363,7 @@
13631363
CLANG_WARN_SUSPICIOUS_MOVE = YES;
13641364
CLANG_WARN_UNREACHABLE_CODE = YES;
13651365
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1366-
CURRENT_PROJECT_VERSION = 80;
1366+
CURRENT_PROJECT_VERSION = 81;
13671367
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
13681368
ENABLE_STRICT_OBJC_MSGSEND = YES;
13691369
"FRAMEWORK_SEARCH_PATHS[sdk=appletvos*]" = (
@@ -1424,7 +1424,7 @@
14241424
APPLICATION_EXTENSION_API_ONLY = YES;
14251425
DEFINES_MODULE = YES;
14261426
DYLIB_COMPATIBILITY_VERSION = 1;
1427-
DYLIB_CURRENT_VERSION = 80;
1427+
DYLIB_CURRENT_VERSION = 81;
14281428
DYLIB_INSTALL_NAME_BASE = "@rpath";
14291429
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
14301430
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1451,7 +1451,7 @@
14511451
APPLICATION_EXTENSION_API_ONLY = YES;
14521452
DEFINES_MODULE = YES;
14531453
DYLIB_COMPATIBILITY_VERSION = 1;
1454-
DYLIB_CURRENT_VERSION = 80;
1454+
DYLIB_CURRENT_VERSION = 81;
14551455
DYLIB_INSTALL_NAME_BASE = "@rpath";
14561456
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
14571457
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

Sources/swcomp/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Foundation
77
import SWCompression
88
import SwiftCLI
99

10-
let cli = CLI(name: "swcomp", version: "4.6.0",
10+
let cli = CLI(name: "swcomp", version: "4.6.1",
1111
description: """
1212
swcomp - a small command-line client for SWCompression framework.
1313
Serves as an example of SWCompression usage.

0 commit comments

Comments
 (0)