Skip to content

Commit add1e61

Browse files
committed
Merge branch 'hotfix-4.5.10'
2 parents 61fa0e4 + 233e0c8 commit add1e61

17 files changed

Lines changed: 65 additions & 72 deletions

.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: true
44
author: Timofey Solomko
55
module: SWCompression
6-
module_version: 4.5.9
6+
module_version: 4.5.10
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.9
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.5.10
1111
theme: fullwidth
1212

1313
custom_categories:

.markdownlint.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.swiftlint.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ git:
33
depth: 1
44
submodules: false
55
jobs:
6+
allow_failures:
7+
# There is an issue with Swift 5.4 on Linux which fails the build. See https://bugs.swift.org/browse/SR-14594.
8+
env:
9+
- SWIFT_VERSION=5.4
610
include:
711
# We test only building using SPM with Swift 4.2 on macos since Carthage doesn't support multiple Swift language versions.
812
- stage: test

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.10
4+
5+
- Fixed compilation issues on Windows (PR #22 by @trametheka).
6+
- Performed minor optimizations to BZip2 and Deflate compression functionality.
7+
- Increased the lowest required version of BitByteData dependency to 1.4.4.
8+
39
## 4.5.9
410

511
- Improved performance of LZMA/LZMA2 and, consequently, of XZ.

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "tsolomko/BitByteData" ~> 1.4.3
1+
github "tsolomko/BitByteData" ~> 1.4.4

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
// .package(url: "https://github.com/jakeheis/SwiftCLI",
1414
// from: "5.2.0"),
1515
.package(url: "https://github.com/tsolomko/BitByteData",
16-
from: "1.4.3"),
16+
from: "1.4.4"),
1717
],
1818
targets: [
1919
// SWCOMP: Uncomment the lines below to build swcomp example program.

Package@swift-4.2.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
// .package(url: "https://github.com/jakeheis/SwiftCLI",
1414
// from: "5.2.0"),
1515
.package(url: "https://github.com/tsolomko/BitByteData",
16-
from: "1.4.3"),
16+
from: "1.4.4"),
1717
],
1818
targets: [
1919
// SWCOMP: Uncomment the lines below to build swcomp example program.

SWCompression.podspec

Lines changed: 2 additions & 2 deletions
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.9"
4+
s.version = "4.5.10"
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."
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
2222

2323
s.swift_versions = ["4", "5"]
2424

25-
s.dependency "BitByteData", "~> 1.4.3"
25+
s.dependency "BitByteData", "~> 1.4.4"
2626

2727
s.subspec "Deflate" do |sp|
2828
sp.source_files = "Sources/{Deflate/*,Common/*,Common/CodingTree/*}.swift"

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.9</string>
18+
<string>4.5.10</string>
1919
<key>CFBundleVersion</key>
20-
<string>76</string>
20+
<string>77</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2021 Timofey Solomko</string>
2323
</dict>

0 commit comments

Comments
 (0)