mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
Preparation for 1.0.2.
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
v1.0.2
|
||||
----------------
|
||||
- Fixed a problem when decompressed amount of data was greater than expected.
|
||||
- Performance improvement.
|
||||
|
||||
v1.0.1
|
||||
----------------
|
||||
Fixed several crashes caused by mistyping and shift 'overflow' (when it becomes greater than 15).
|
||||
|
||||
@@ -14,7 +14,8 @@ Secondly, if you are a Swift developer and you want to compress/decompress somet
|
||||
you have to use either wrapper around system libraries (which is probably written in Objective-C)
|
||||
or you have to use built-in Compression framework.
|
||||
You might think that last option is what you need, but, frankly
|
||||
that framework has a bit complicated API and somewhat questionable choice of supported compression algorithms. And yes, it is also in Objective-C.
|
||||
that framework has a bit complicated API and somewhat questionable choice of supported compression algorithms.
|
||||
And yes, it is also in Objective-C.
|
||||
|
||||
And here comes SWCompression: no Objective-C, pure Swift.
|
||||
|
||||
@@ -86,6 +87,7 @@ you are responsible for handling them.
|
||||
|
||||
Future plans
|
||||
-------------
|
||||
- Performance improvement.
|
||||
- BZip2 decompression support.
|
||||
- Deflate compression.
|
||||
- BZip2 compression.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Pod::Spec.new do |s|
|
||||
|
||||
s.name = "SWCompression"
|
||||
s.version = "1.0.1"
|
||||
s.version = "1.0.2"
|
||||
s.summary = "Framework with implementations in Swift of different (de)compression algorithms"
|
||||
|
||||
s.description = <<-DESC
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<string>1.0.2</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
|
||||
Reference in New Issue
Block a user