Skip to content

Commit ff5732a

Browse files
committed
Prepare for 4.5.11 release
1 parent 6203b65 commit ff5732a

7 files changed

Lines changed: 18 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.5.10
6+
module_version: 4.5.11
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.5.10
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.5.11
1111
theme: fullwidth
1212

1313
custom_categories:

CHANGELOG.md

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

3+
## 4.5.11
4+
5+
- Fixed a crash when processing a truncated TAR file.
6+
- Added missing documentation for `LZMAProperties.init()`.
7+
- Windows is now supported.
8+
39
## 4.5.10
410

511
- Fixed compilation issues on Windows (PR #22 by @trametheka).

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.5.10"
4+
s.version = "4.5.11"
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.5.10</string>
18+
<string>4.5.11</string>
1919
<key>CFBundleVersion</key>
20-
<string>77</string>
20+
<string>78</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.5.10</string>
18+
<string>4.5.11</string>
1919
<key>CFBundleVersion</key>
20-
<string>77</string>
20+
<string>78</string>
2121
</dict>
2222
</plist>

SWCompression.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@
12581258
CLANG_WARN_SUSPICIOUS_MOVE = YES;
12591259
CLANG_WARN_UNREACHABLE_CODE = YES;
12601260
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1261-
CURRENT_PROJECT_VERSION = 77;
1261+
CURRENT_PROJECT_VERSION = 78;
12621262
DEBUG_INFORMATION_FORMAT = dwarf;
12631263
ENABLE_STRICT_OBJC_MSGSEND = YES;
12641264
ENABLE_TESTABILITY = YES;
@@ -1339,7 +1339,7 @@
13391339
CLANG_WARN_SUSPICIOUS_MOVE = YES;
13401340
CLANG_WARN_UNREACHABLE_CODE = YES;
13411341
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1342-
CURRENT_PROJECT_VERSION = 77;
1342+
CURRENT_PROJECT_VERSION = 78;
13431343
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
13441344
ENABLE_STRICT_OBJC_MSGSEND = YES;
13451345
"FRAMEWORK_SEARCH_PATHS[sdk=appletvos*]" = (
@@ -1400,7 +1400,7 @@
14001400
APPLICATION_EXTENSION_API_ONLY = YES;
14011401
DEFINES_MODULE = YES;
14021402
DYLIB_COMPATIBILITY_VERSION = 1;
1403-
DYLIB_CURRENT_VERSION = 77;
1403+
DYLIB_CURRENT_VERSION = 78;
14041404
DYLIB_INSTALL_NAME_BASE = "@rpath";
14051405
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
14061406
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1427,7 +1427,7 @@
14271427
APPLICATION_EXTENSION_API_ONLY = YES;
14281428
DEFINES_MODULE = YES;
14291429
DYLIB_COMPATIBILITY_VERSION = 1;
1430-
DYLIB_CURRENT_VERSION = 77;
1430+
DYLIB_CURRENT_VERSION = 78;
14311431
DYLIB_INSTALL_NAME_BASE = "@rpath";
14321432
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
14331433
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.5.10",
10+
let cli = CLI(name: "swcomp", version: "4.5.11",
1111
description: """
1212
swcomp - small command-line client for SWCompression framework.
1313
Serves as an example of SWCompression usage.

0 commit comments

Comments
 (0)