diff --git a/CHANGELOG.md b/CHANGELOG.md index b1ce87f0..a1ff2b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/README.md b/README.md index 43ddf4c2..069d2099 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/SWCompression.podspec b/SWCompression.podspec index 558de0f0..d4f1900f 100644 --- a/SWCompression.podspec +++ b/SWCompression.podspec @@ -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 diff --git a/Sources/Info-iOS.plist b/Sources/Info-iOS.plist index fbe1e6b3..175b2b5f 100644 --- a/Sources/Info-iOS.plist +++ b/Sources/Info-iOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0 + 1.0.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Sources/Info-tvOS.plist b/Sources/Info-tvOS.plist index fbe1e6b3..175b2b5f 100644 --- a/Sources/Info-tvOS.plist +++ b/Sources/Info-tvOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0 + 1.0.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Sources/Info-watchOS.plist b/Sources/Info-watchOS.plist index fbe1e6b3..175b2b5f 100644 --- a/Sources/Info-watchOS.plist +++ b/Sources/Info-watchOS.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0 + 1.0.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/Sources/Info.plist b/Sources/Info.plist index b7ccde66..3cd265d5 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0 + 1.0.2 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright