Skip to content

Commit

Permalink
1725887384
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Sep 9, 2024
1 parent c8e506a commit 7a68cf1
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma

1.4.6: (current):
1.4.7: (current):
- Update of the underlying code.

1.4.6:
- Swift package, Cocoapods: add optional compiller flags.
- Apple plaftforms: improve version generation.

Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ set(PACKAGE "libplzma")
set(CPACK_PACKAGE_NAME "${PACKAGE}")
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "4")
set(CPACK_PACKAGE_VERSION_PATCH "6")
set(CPACK_PACKAGE_VERSION_PATCH "7")
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
set(CPACK_PACKAGE_VENDOR "[email protected]")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PACKAGE} ${PACKAGE_VERSION}")
set(SOVERSION "1.4.6")
set(SOVERSION "1.4.7")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
set(VERSION "${CPACK_PACKAGE_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion PLzmaSDK-ObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PLzmaSDK-ObjC'
s.version = '1.4.6'
s.version = '1.4.7'
s.summary = '(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma'
s.homepage = 'https://github.com/OlehKulykov/PLzmaSDK'
s.source = { :git => s.homepage + '.git', :tag => s.version }
Expand Down
2 changes: 1 addition & 1 deletion PLzmaSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PLzmaSDK'
s.version = '1.4.6'
s.version = '1.4.7'
s.summary = '(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma'
s.homepage = 'https://github.com/OlehKulykov/PLzmaSDK'
s.source = { :git => s.homepage + '.git', :tag => s.version }
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ All optional features are enabled by default, but they might be disabled during
-----------
#### Swift Package Manager
```swift
.package(url: "https://github.com/OlehKulykov/PLzmaSDK.git", .exact("1.4.6"))
.package(url: "https://github.com/OlehKulykov/PLzmaSDK.git", .exact("1.4.7"))
```

#### CocoaPods Podfile (Swift)
Expand All @@ -64,7 +64,7 @@ use_frameworks!
platform :ios, '11.0'

target '<REPLACE_WITH_YOUR_TARGET>' do
pod 'PLzmaSDK', '1.4.6'
pod 'PLzmaSDK', '1.4.7'
end
```

Expand All @@ -74,7 +74,7 @@ use_frameworks!
platform :ios, '9.0'

target '<REPLACE_WITH_YOUR_TARGET>' do
pod 'PLzmaSDK-ObjC', '1.4.6'
pod 'PLzmaSDK-ObjC', '1.4.7'
end
```

Expand All @@ -86,7 +86,7 @@ end
"npm": ">=6.0.0"
},
"dependencies": {
"plzmasdk": "1.4.6"
"plzmasdk": "1.4.7"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4.6.{build}
version: 1.4.7.{build}


os: Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.4.6"
versionName "1.4.7"
externalNativeBuild {
cmake {
arguments "-DANDROID_STL=c++_static", "-DANDROID_TOOLCHAIN=clang", "-DLIBCLZMA_OPT_ANDROID:BOOL=ON", "-DLIBCLZMA_OPT_STATIC:BOOL=OFF", "-DLIBCLZMA_OPT_TESTS:BOOL=OFF", "-DLIBCLZMA_OPT_BUILD_NUMBER=1047"
Expand Down
4 changes: 2 additions & 2 deletions libplzma.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
/// and all optional C bindings to the internal C++ part(Core) of the library.
/// Everything what you need to use this library in C | Objective-C | Swift env. is here.

/// @brief Manualy defined version of the library, i.e. 1.4.6
/// @brief Manualy defined version of the library, i.e. 1.4.7
/// The optinal \a LIBPLZMA_VERSION_BUILD might be befined by the CI or CMake or manualy.
/// Conforms 'Semantic Versioning 2.0.0'.
/// @link https://semver.org
#define LIBPLZMA_VERSION_MAJOR 1
#define LIBPLZMA_VERSION_MINOR 4
#define LIBPLZMA_VERSION_PATCH 6
#define LIBPLZMA_VERSION_PATCH 7

// Check Windows
#if defined(WIN32) || defined(_WIN32) || defined(_WIN64) || defined(WIN64) || defined(WIN32_LEAN_AND_MEAN)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plzmasdk",
"version": "1.4.6",
"version": "1.4.7",
"description": "(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma",
"author": "Oleh Kulykov <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
Expand Down

0 comments on commit 7a68cf1

Please sign in to comment.