Preparation for 1.0.2.

This commit is contained in:
Timofey Solomko
2016-10-31 19:30:12 +03:00
parent 2fcadd29f6
commit c295a5fc2d
7 changed files with 13 additions and 6 deletions
+5
View File
@@ -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).
+3 -1
View File
@@ -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 -1
View File
@@ -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
+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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
View File
@@ -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>