Skip to content

Commit 687517c

Browse files
committed
Prepare for 4.8.6 release
1 parent 41a74a4 commit 687517c

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

.jazzy.yaml

+2-2
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.8.5
6+
module_version: 4.8.6
77
copyright: '© 2024 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.8.5
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.6
1111
theme: fullwidth
1212

1313
custom_categories:

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 4.8.6
4+
5+
- Swift 5.2 is no longer supported.
6+
- Enable visionOS deployment target (only for Carthage users).
7+
- Add PrivacyInfo file.
8+
- Fixed a documentation error in `TarEntryInfo.deviceMinorNumber`.
9+
310
## 4.8.5
411

512
- Fixed an issue where in some cases LZMA2 decompression would fail with an incorrectly thrown error.

SWCompression.podspec

+1-1
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.8.5"
4+
s.version = "4.8.6"
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

+2-2
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.8.5</string>
18+
<string>4.8.6</string>
1919
<key>CFBundleVersion</key>
20-
<string>90</string>
20+
<string>91</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2024 Timofey Solomko</string>
2323
</dict>

SWCompression.xcodeproj/TestSWCompression.plist

+2-2
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.8.5</string>
18+
<string>4.8.6</string>
1919
<key>CFBundleVersion</key>
20-
<string>90</string>
20+
<string>91</string>
2121
</dict>
2222
</plist>

SWCompression.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@
15481548
CLANG_WARN_SUSPICIOUS_MOVE = YES;
15491549
CLANG_WARN_UNREACHABLE_CODE = YES;
15501550
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1551-
CURRENT_PROJECT_VERSION = 90;
1551+
CURRENT_PROJECT_VERSION = 91;
15521552
DEAD_CODE_STRIPPING = YES;
15531553
DEBUG_INFORMATION_FORMAT = dwarf;
15541554
EAGER_LINKING = YES;
@@ -1618,7 +1618,7 @@
16181618
CLANG_WARN_SUSPICIOUS_MOVE = YES;
16191619
CLANG_WARN_UNREACHABLE_CODE = YES;
16201620
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1621-
CURRENT_PROJECT_VERSION = 90;
1621+
CURRENT_PROJECT_VERSION = 91;
16221622
DEAD_CODE_STRIPPING = YES;
16231623
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
16241624
EAGER_LINKING = YES;
@@ -1667,7 +1667,7 @@
16671667
APPLICATION_EXTENSION_API_ONLY = YES;
16681668
DEFINES_MODULE = YES;
16691669
DYLIB_COMPATIBILITY_VERSION = 1;
1670-
DYLIB_CURRENT_VERSION = 90;
1670+
DYLIB_CURRENT_VERSION = 91;
16711671
DYLIB_INSTALL_NAME_BASE = "@rpath";
16721672
ENABLE_MODULE_VERIFIER = YES;
16731673
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
@@ -1697,7 +1697,7 @@
16971697
APPLICATION_EXTENSION_API_ONLY = YES;
16981698
DEFINES_MODULE = YES;
16991699
DYLIB_COMPATIBILITY_VERSION = 1;
1700-
DYLIB_CURRENT_VERSION = 90;
1700+
DYLIB_CURRENT_VERSION = 91;
17011701
DYLIB_INSTALL_NAME_BASE = "@rpath";
17021702
ENABLE_MODULE_VERIFIER = YES;
17031703
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;

Sources/swcomp/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Foundation
77
import SWCompression
88
import SwiftCLI
99

10-
let _SWC_VERSION = "4.8.5"
10+
let _SWC_VERSION = "4.8.6"
1111

1212
let cli = CLI(name: "swcomp", version: _SWC_VERSION,
1313
description: """

0 commit comments

Comments
 (0)