Skip to content

Commit cd39ca0

Browse files
committed
Merge branch 'develop'
2 parents bca9a66 + 1e7393d commit cd39ca0

157 files changed

Lines changed: 173 additions & 171 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.jazzy.yaml

Lines changed: 3 additions & 3 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.8.4
7-
copyright: '© 2022 Timofey Solomko'
6+
module_version: 4.8.5
7+
copyright: '© 2023 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.4
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.5
1111
theme: fullwidth
1212

1313
custom_categories:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Timofey Solomko
3+
Copyright (c) 2023 Timofey Solomko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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.8.4"
4+
s.version = "4.8.5"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.8.4</string>
18+
<string>4.8.5</string>
1919
<key>CFBundleVersion</key>
20-
<string>89</string>
20+
<string>90</string>
2121
<key>NSHumanReadableCopyright</key>
22-
<string>Copyright © 2022 Timofey Solomko</string>
22+
<string>Copyright © 2023 Timofey Solomko</string>
2323
</dict>
2424
</plist>

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.8.4</string>
18+
<string>4.8.5</string>
1919
<key>CFBundleVersion</key>
20-
<string>89</string>
20+
<string>90</string>
2121
</dict>
2222
</plist>

SWCompression.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@
15281528
CLANG_WARN_SUSPICIOUS_MOVE = YES;
15291529
CLANG_WARN_UNREACHABLE_CODE = YES;
15301530
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1531-
CURRENT_PROJECT_VERSION = 89;
1531+
CURRENT_PROJECT_VERSION = 90;
15321532
DEAD_CODE_STRIPPING = YES;
15331533
DEBUG_INFORMATION_FORMAT = dwarf;
15341534
EAGER_LINKING = YES;
@@ -1613,7 +1613,7 @@
16131613
CLANG_WARN_SUSPICIOUS_MOVE = YES;
16141614
CLANG_WARN_UNREACHABLE_CODE = YES;
16151615
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1616-
CURRENT_PROJECT_VERSION = 89;
1616+
CURRENT_PROJECT_VERSION = 90;
16171617
DEAD_CODE_STRIPPING = YES;
16181618
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
16191619
EAGER_LINKING = YES;
@@ -1678,7 +1678,7 @@
16781678
APPLICATION_EXTENSION_API_ONLY = YES;
16791679
DEFINES_MODULE = YES;
16801680
DYLIB_COMPATIBILITY_VERSION = 1;
1681-
DYLIB_CURRENT_VERSION = 89;
1681+
DYLIB_CURRENT_VERSION = 90;
16821682
DYLIB_INSTALL_NAME_BASE = "@rpath";
16831683
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
16841684
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1705,7 +1705,7 @@
17051705
APPLICATION_EXTENSION_API_ONLY = YES;
17061706
DEFINES_MODULE = YES;
17071707
DYLIB_COMPATIBILITY_VERSION = 1;
1708-
DYLIB_CURRENT_VERSION = 89;
1708+
DYLIB_CURRENT_VERSION = 90;
17091709
DYLIB_INSTALL_NAME_BASE = "@rpath";
17101710
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
17111711
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

Sources/7-Zip/7zCoder+Equatable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2022 Timofey Solomko
1+
// Copyright (c) 2023 Timofey Solomko
22
// Licensed under MIT License
33
//
44
// See LICENSE for license information

Sources/7-Zip/7zCoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2022 Timofey Solomko
1+
// Copyright (c) 2023 Timofey Solomko
22
// Licensed under MIT License
33
//
44
// See LICENSE for license information

Sources/7-Zip/7zCoderInfo.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2022 Timofey Solomko
1+
// Copyright (c) 2023 Timofey Solomko
22
// Licensed under MIT License
33
//
44
// See LICENSE for license information

0 commit comments

Comments
 (0)