Skip to content

Commit

Permalink
Release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
okulykov committed Aug 24, 2022
1 parent c266f2b commit 76714d3
Show file tree
Hide file tree
Showing 10 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.2.1: (current):
1.2.2: (current):
- Minor code improvents.

1.2.1:
- Update of the underlying code.

1.2.0:
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 "2")
set(CPACK_PACKAGE_VERSION_PATCH "1")
set(CPACK_PACKAGE_VERSION_PATCH "2")
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.2.1")
set(SOVERSION "1.2.2")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
set(VERSION "${CPACK_PACKAGE_VERSION}")

Expand Down
4 changes: 2 additions & 2 deletions 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.2.1'
s.version = '1.2.2'
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 All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.subspec 'libplzma' do |libplzma|
libplzma.source_files = 'libplzma.h', 'libplzma.hpp', 'src/**/*.{c,cpp,h,hpp}'
libplzma.public_header_files = 'libplzma.h'
libplzma.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=452'
libplzma.compiler_flags = '-DLIBPLZMA_VERSION_BUILD=468'
libplzma.libraries = 'c++'
end

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ let package = Package(
.target(name: "libplzma",
path: "src",
cSettings: [
.define("LIBPLZMA_VERSION_BUILD", to: "452")
.define("LIBPLZMA_VERSION_BUILD", to: "468")
],
cxxSettings: [
.define("LIBPLZMA_VERSION_BUILD", to: "452")
.define("LIBPLZMA_VERSION_BUILD", to: "468")
]
),
.target(name: "PLzmaSDK",
Expand Down
2 changes: 1 addition & 1 deletion android/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ ALL_INCLUDES := $(LOCAL_PATH)/../../../
ALL_CFLAGS := \
-DLIBPLZMA_BUILD=1 \
-DLIBPLZMA_SHARED=1 \
-DLIBPLZMA_VERSION_BUILD=452 \
-DLIBPLZMA_VERSION_BUILD=468 \
-w


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.2.1.{build}
version: 1.2.2.{build}


os: Visual Studio 2015
Expand Down
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
'target_name': 'plzmasdk',
'defines': [
'LIBPLZMA_VERSION_BUILD=452',
'LIBPLZMA_VERSION_BUILD=468',
'LIBPLZMA_SHARED=1',
'LIBPLZMA_NO_C_BINDINGS=1',
'LIBPLZMA_HAVE_STD=1'
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.2.1"
versionName "1.2.2"
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=428"
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.2.1
/// @brief Manualy defined version of the library, i.e. 1.2.2
/// 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 2
#define LIBPLZMA_VERSION_PATCH 1
#define LIBPLZMA_VERSION_PATCH 2

// check windows
#if defined(WIN32) || defined(_WIN32) || defined(WIN32_LEAN_AND_MEAN) || defined(_WIN64) || defined(WIN64)
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.2.1",
"version": "1.2.2",
"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 76714d3

Please sign in to comment.