Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tsolomko committed Feb 19, 2023
2 parents bca9a66 + 1e7393d commit cd39ca0
Show file tree
Hide file tree
Showing 157 changed files with 173 additions and 171 deletions.
6 changes: 3 additions & 3 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ sourcekitten_sourcefile: docs.json
clean: false
author: Timofey Solomko
module: SWCompression
module_version: 4.8.4
copyright: '© 2022 Timofey Solomko'
module_version: 4.8.5
copyright: '© 2023 Timofey Solomko'
readme: README.md
github_url: https://github.com/tsolomko/SWCompression
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.4
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.5
theme: fullwidth

custom_categories:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.8.5

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

## 4.8.4

- Fixed an issue where in some cases BZip2 compression would produce incorrect output.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Timofey Solomko
Copyright (c) 2023 Timofey Solomko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion SWCompression.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SWCompression"
s.version = "4.8.4"
s.version = "4.8.5"
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."
Expand Down
6 changes: 3 additions & 3 deletions SWCompression.xcodeproj/SWCompression.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.8.4</string>
<string>4.8.5</string>
<key>CFBundleVersion</key>
<string>89</string>
<string>90</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2022 Timofey Solomko</string>
<string>Copyright © 2023 Timofey Solomko</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions SWCompression.xcodeproj/TestSWCompression.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>4.8.4</string>
<string>4.8.5</string>
<key>CFBundleVersion</key>
<string>89</string>
<string>90</string>
</dict>
</plist>
8 changes: 4 additions & 4 deletions SWCompression.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CURRENT_PROJECT_VERSION = 89;
CURRENT_PROJECT_VERSION = 90;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
EAGER_LINKING = YES;
Expand Down Expand Up @@ -1613,7 +1613,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CURRENT_PROJECT_VERSION = 89;
CURRENT_PROJECT_VERSION = 90;
DEAD_CODE_STRIPPING = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
EAGER_LINKING = YES;
Expand Down Expand Up @@ -1678,7 +1678,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 89;
DYLIB_CURRENT_VERSION = 90;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
Expand All @@ -1705,7 +1705,7 @@
APPLICATION_EXTENSION_API_ONLY = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 89;
DYLIB_CURRENT_VERSION = 90;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zCoder+Equatable.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zCoder.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zCoderInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zContainer.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zEntry.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zEntryInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zError.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zFileInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zFolder.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zHeader.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zPackInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zProperty.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zStreamInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/7zSubstreamInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/CompressionMethod+7z.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/7-Zip/MsbBitReader+7z.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BZip2+BlockSize.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BZip2+Compress.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BZip2+Lengths.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BZip2.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BZip2Error.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/BurrowsWheeler.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/BZip2/SuffixArray.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Archive.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CheckSums.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CodingTree/Code.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CodingTree/CodeLength.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CodingTree/DecodingTree.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CodingTree/EncodingTree.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CompressionAlgorithm.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/CompressionMethod.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/Container.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/ContainerEntry.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/ContainerEntryInfo.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/ContainerEntryType.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/DosAttributes.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Container/Permissions.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/DataError.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/DecompressionAlgorithm.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/DeltaFilter.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/Extensions.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Common/FileSystemType.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Deflate/Deflate+Compress.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Deflate/Deflate+Constants.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Deflate/Deflate+Lengths.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Deflate/Deflate.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/Deflate/DeflateError.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/GZip/FileSystemType+Gzip.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
2 changes: 1 addition & 1 deletion Sources/GZip/GzipArchive.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 Timofey Solomko
// Copyright (c) 2023 Timofey Solomko
// Licensed under MIT License
//
// See LICENSE for license information
Expand Down
Loading

0 comments on commit cd39ca0

Please sign in to comment.