Skip to content

Commit f9f5e9e

Browse files
committed
Prepare for the test release of 4.8.0
1 parent 939f08a commit f9f5e9e

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

.jazzy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ sourcekitten_sourcefile: docs.json
33
clean: false
44
author: Timofey Solomko
55
module: SWCompression
6-
module_version: 4.7.0
6+
module_version: 4.8.0-test
77
copyright: '© 2022 Timofey Solomko'
88
readme: README.md
99
github_url: https://github.com/tsolomko/SWCompression
10-
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.7.0
10+
github_file_prefix: https://github.com/tsolomko/SWCompression/tree/4.8.0-test
1111
theme: fullwidth
1212

1313
custom_categories:

SWCompression.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Pod::Spec.new do |s|
22

33
s.name = "SWCompression"
4-
s.version = "4.7.0"
4+
s.version = "4.8.0-test"
55
s.summary = "A framework with functions for working with compression, archives and containers."
6-
6+
77
s.description = "A framework with (de)compression algorithms and functions for processing various archives and containers."
88

99
s.homepage = "https://github.com/tsolomko/SWCompression"

SWCompression.xcodeproj/SWCompression.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.7.0</string>
18+
<string>4.8.0-test</string>
1919
<key>CFBundleVersion</key>
20-
<string>83</string>
20+
<string>84</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2022 Timofey Solomko</string>
2323
</dict>

SWCompression.xcodeproj/TestSWCompression.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.7.0</string>
18+
<string>4.8.0-test</string>
1919
<key>CFBundleVersion</key>
20-
<string>83</string>
20+
<string>84</string>
2121
</dict>
2222
</plist>

SWCompression.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@
15121512
CLANG_WARN_SUSPICIOUS_MOVE = YES;
15131513
CLANG_WARN_UNREACHABLE_CODE = YES;
15141514
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1515-
CURRENT_PROJECT_VERSION = 83;
1515+
CURRENT_PROJECT_VERSION = 84;
15161516
DEBUG_INFORMATION_FORMAT = dwarf;
15171517
ENABLE_STRICT_OBJC_MSGSEND = YES;
15181518
ENABLE_TESTABILITY = YES;
@@ -1593,7 +1593,7 @@
15931593
CLANG_WARN_SUSPICIOUS_MOVE = YES;
15941594
CLANG_WARN_UNREACHABLE_CODE = YES;
15951595
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1596-
CURRENT_PROJECT_VERSION = 83;
1596+
CURRENT_PROJECT_VERSION = 84;
15971597
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
15981598
ENABLE_STRICT_OBJC_MSGSEND = YES;
15991599
"FRAMEWORK_SEARCH_PATHS[sdk=appletvos*]" = (
@@ -1654,7 +1654,7 @@
16541654
APPLICATION_EXTENSION_API_ONLY = YES;
16551655
DEFINES_MODULE = YES;
16561656
DYLIB_COMPATIBILITY_VERSION = 1;
1657-
DYLIB_CURRENT_VERSION = 83;
1657+
DYLIB_CURRENT_VERSION = 84;
16581658
DYLIB_INSTALL_NAME_BASE = "@rpath";
16591659
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
16601660
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -1681,7 +1681,7 @@
16811681
APPLICATION_EXTENSION_API_ONLY = YES;
16821682
DEFINES_MODULE = YES;
16831683
DYLIB_COMPATIBILITY_VERSION = 1;
1684-
DYLIB_CURRENT_VERSION = 83;
1684+
DYLIB_CURRENT_VERSION = 84;
16851685
DYLIB_INSTALL_NAME_BASE = "@rpath";
16861686
INFOPLIST_FILE = SWCompression.xcodeproj/SWCompression.plist;
16871687
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

Sources/swcomp/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Foundation
77
import SWCompression
88
import SwiftCLI
99

10-
let cli = CLI(name: "swcomp", version: "4.7.0",
10+
let cli = CLI(name: "swcomp", version: "4.8.0-test",
1111
description: """
1212
swcomp - a small command-line client for SWCompression framework.
1313
Serves as an example of SWCompression usage.

0 commit comments

Comments
 (0)