11# SWCompression
22
3- [ ![ Swift 5.1 +] ( https://img.shields.io/badge/Swift-5.1 +-blue.svg )] ( https://developer.apple.com/swift/ )
3+ [ ![ Swift 5.2 +] ( https://img.shields.io/badge/Swift-5.2 +-blue.svg )] ( https://developer.apple.com/swift/ )
44[ ![ GitHub license] ( https://img.shields.io/badge/license-MIT-lightgrey.svg )] ( https://raw.githubusercontent.com/tsolomko/SWCompression/master/LICENSE )
55[ ![ Build Status] ( https://dev.azure.com/tsolomko/SWCompression/_apis/build/status/tsolomko.SWCompression?branchName=develop )] ( https://dev.azure.com/tsolomko/SWCompression/_build/latest?definitionId=3&branchName=develop )
66
@@ -19,7 +19,7 @@ It also works on Apple platforms, Linux, __and Windows__.
1919All features are listed in the tables below. "TBD" means that feature is planned but not implemented (yet).
2020
2121| | Deflate | BZip2 | LZMA/LZMA2 | LZ4 |
22- | ------------- | ------- | ----- | ---------- | --- |
22+ | ------------- | ------- | ----- | ---------- | --- |
2323| Decompression | ✅ | ✅ | ✅ | ✅ |
2424| Compression | ✅ | ✅ | TBD | ✅ |
2525
@@ -44,8 +44,8 @@ import PackageDescription
4444let package = Package (
4545 name : " PackageName" ,
4646 dependencies : [
47- .package (url : " https://github.com/tsolomko/SWCompression.git" ,
48- from : " 4.7 .0" )
47+ .package (name : " SWCompression " , url : " https://github.com/tsolomko/SWCompression.git" ,
48+ from : " 4.8 .0" )
4949 ],
5050 targets : [
5151 .target (
@@ -60,7 +60,7 @@ More details you can find in [Swift Package Manager's Documentation](https://git
6060
6161### CocoaPods
6262
63- Add ` pod 'SWCompression', '~> 4.7 ' ` and ` use_frameworks! ` lines to your Podfile.
63+ Add ` pod 'SWCompression', '~> 4.8 ' ` and ` use_frameworks! ` lines to your Podfile.
6464
6565To complete installation, run ` pod install ` .
6666
@@ -105,7 +105,7 @@ BZip2, LZMA/LZMA2 and LZ4 support).
105105
106106### Carthage
107107
108- Add to your Cartfile ` github "tsolomko/SWCompression" ~> 4.7 ` .
108+ Add to your Cartfile ` github "tsolomko/SWCompression" ~> 4.8 ` .
109109
110110Then:
111111
@@ -168,8 +168,8 @@ Every function or type of SWCompression's public API is documented. This documen
168168
169169### Sophisticated example
170170
171- There is a small command-line program, "swcomp", which is included in this repository in "Sources/swcomp". To build it
172- you need to uncomment several lines in " Package.swift" and run ` swift build -c release ` .
171+ There is a small command-line program, "swcomp", which is included in this repository in "Sources/swcomp". It can be
172+ built using Swift Package Manager .
173173
174174## Contributing
175175
@@ -236,7 +236,7 @@ provide missing (and sometimes existing) functionality through the unified API w
236236
237237Secondly, in some cases it may be important to have a compression framework written entirely in Swift, without relying
238238on either system libraries or solutions implemented in other languages. Additionaly, since SWCompression is written
239- completely in Swift without Objective-C, it can also be used on __ Linux __ .
239+ completely in Swift without Objective-C, it can also be used on Linux, __ and Windows __ .
240240
241241## Future plans
242242
0 commit comments