Skip to content

Commit 9ac7d7f

Browse files
committed
Prepare for 1.4.3 release
1 parent aa76573 commit 9ac7d7f

7 files changed

Lines changed: 17 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: true
44
author: Timofey Solomko
55
module: BitByteData
6-
module_version: 1.4.2
6+
module_version: 1.4.3
77
copyright: '© 2020 Timofey Solomko'
88
readme: README.md
99
github_url: https://github.com/tsolomko/BitByteData
10-
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/1.4.2
10+
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/1.4.3
1111
theme: fullwidth
1212

1313
custom_categories:

BitByteData.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "BitByteData"
4-
s.version = "1.4.2"
4+
s.version = "1.4.3"
55
s.summary = "Read and write bits and bytes in Swift."
66

77
s.description = "A Swift framework with classes for reading and writing bits and bytes."

BitByteData.xcodeproj/BitByteData.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>1.4.2</string>
18+
<string>1.4.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>21</string>
20+
<string>22</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2020 Timofey Solomko. All rights reserved.</string>
2323
</dict>

BitByteData.xcodeproj/BitByteDataBenchmarks.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>1.4.2</string>
18+
<string>1.4.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>21</string>
20+
<string>22</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/TestBitByteData.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>1.4.2</string>
18+
<string>1.4.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>21</string>
20+
<string>22</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@
376376
CLANG_WARN_SUSPICIOUS_MOVE = YES;
377377
CLANG_WARN_UNREACHABLE_CODE = YES;
378378
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
379-
CURRENT_PROJECT_VERSION = 21;
379+
CURRENT_PROJECT_VERSION = 22;
380380
DEBUG_INFORMATION_FORMAT = dwarf;
381381
ENABLE_STRICT_OBJC_MSGSEND = YES;
382382
ENABLE_TESTABILITY = YES;
@@ -424,7 +424,7 @@
424424
CLANG_WARN_SUSPICIOUS_MOVE = YES;
425425
CLANG_WARN_UNREACHABLE_CODE = YES;
426426
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
427-
CURRENT_PROJECT_VERSION = 21;
427+
CURRENT_PROJECT_VERSION = 22;
428428
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
429429
ENABLE_STRICT_OBJC_MSGSEND = YES;
430430
GCC_NO_COMMON_BLOCKS = YES;
@@ -454,7 +454,7 @@
454454
APPLICATION_EXTENSION_API_ONLY = YES;
455455
DEFINES_MODULE = YES;
456456
DYLIB_COMPATIBILITY_VERSION = 1;
457-
DYLIB_CURRENT_VERSION = 21;
457+
DYLIB_CURRENT_VERSION = 22;
458458
DYLIB_INSTALL_NAME_BASE = "@rpath";
459459
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
460460
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -478,7 +478,7 @@
478478
APPLICATION_EXTENSION_API_ONLY = YES;
479479
DEFINES_MODULE = YES;
480480
DYLIB_COMPATIBILITY_VERSION = 1;
481-
DYLIB_CURRENT_VERSION = 21;
481+
DYLIB_CURRENT_VERSION = 22;
482482
DYLIB_INSTALL_NAME_BASE = "@rpath";
483483
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
484484
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.4.3
4+
5+
- Fixed incompatibility with Swift Package Manager from Swift 4.2.
6+
37
## 1.4.2
48

59
- Improved compatibility with the latest versions of Swift (5.x) and Xcode.

0 commit comments

Comments
 (0)