Skip to content

Commit

Permalink
Release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Jun 10, 2019
1 parent 48852bc commit f5dc65f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code

Changes on version 2.1.0 (current):
Changes on version 2.1.1 (current):
- Pull request #41: Enable ppmd for plain text compress.
Thanks to 'enefry'.

Changes on version 2.1.0:
- Pull request #40: Add crc functionality to public interface.
Thanks to 'jakubvano'.
- Pull request #39: Add direct NSData compression & decompression.
Expand Down
2 changes: 1 addition & 1 deletion LzmaSDK-ObjC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "LzmaSDK-ObjC"
s.version = "2.1.0"
s.version = "2.1.1"
s.summary = "Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code"
s.description = <<-DESC
It's not yet another wrapper around C part of the LZMA SDK with all it's limitations.
Expand Down
8 changes: 6 additions & 2 deletions src/LzmaSDKObjC.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
/*
* Lzma SDK for Objective-C based on extended functionality of the C++ LZMA code
*
* Changes on version 2.1.0 (current):
* Changes on version 2.1.1 (current):
* - Pull request #41: Enable ppmd for plain text compress.
* Thanks to 'enefry'.
*
* Changes on version 2.1.0:
* - Pull request #40: Add crc functionality to public interface.
* Thanks to 'jakubvano'.
* - Pull request #39: Add direct NSData compression & decompression.
Expand Down Expand Up @@ -173,7 +177,7 @@

#define LZMASDKOBJC_VERSION_MAJOR 2
#define LZMASDKOBJC_VERSION_MINOR 1
#define LZMASDKOBJC_VERSION_PATCH 0
#define LZMASDKOBJC_VERSION_PATCH 1


#import "LzmaSDKObjCTypes.h"
Expand Down
6 changes: 3 additions & 3 deletions src/LzmaSDKObjCFileEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ namespace LzmaSDKObjC {
};

switch ((LzmaSDKObjCMethod)method) {
case LzmaSDKObjCMethodLZMA: values[0] = L"LZMA"; break;
case LzmaSDKObjCMethodLZMA2: values[0] = L"LZMA2"; break;
case LzmaSDKObjCMethodPPMd:values[0] = L"PPMD";break;
case LzmaSDKObjCMethodLZMA: values[0] = L"LZMA"; break;
case LzmaSDKObjCMethodLZMA2: values[0] = L"LZMA2"; break;
case LzmaSDKObjCMethodPPMd:values[0] = L"PPMD"; break;
default: break;
}

Expand Down
6 changes: 3 additions & 3 deletions src/LzmaSDKObjCTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
#endif

typedef enum _LzmaSDKObjCFileType {
LzmaSDKObjCFileTypeUndefined = 0,
LzmaSDKObjCFileType7z = 1
LzmaSDKObjCFileTypeUndefined = 0,
LzmaSDKObjCFileType7z = 1
} LzmaSDKObjCFileType;

typedef enum _LzmaSDKObjCMethod {
LzmaSDKObjCMethodLZMA = 0,
LzmaSDKObjCMethodLZMA = 0,
LzmaSDKObjCMethodLZMA2 = 1,
LzmaSDKObjCMethodPPMd = 2,
} LzmaSDKObjCMethod;
Expand Down

0 comments on commit f5dc65f

Please sign in to comment.