Skip to content

Commit 6bf2fd3

Browse files
committed
Prepare for 2.0.2 release
1 parent 9161088 commit 6bf2fd3

7 files changed

Lines changed: 19 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: BitByteData
6-
module_version: 2.0.1
6+
module_version: 2.0.2
77
copyright: '© 2022 Timofey Solomko'
88
readme: README.md
99
github_url: https://github.com/tsolomko/BitByteData
10-
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/2.0.1
10+
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/2.0.2
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 = "2.0.1"
4+
s.version = "2.0.2"
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>2.0.1</string>
18+
<string>2.0.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2022 Timofey Solomko</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>2.0.1</string>
18+
<string>2.0.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</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>2.0.1</string>
18+
<string>2.0.2</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@
408408
CLANG_WARN_SUSPICIOUS_MOVE = YES;
409409
CLANG_WARN_UNREACHABLE_CODE = YES;
410410
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
411-
CURRENT_PROJECT_VERSION = 27;
411+
CURRENT_PROJECT_VERSION = 28;
412412
DEAD_CODE_STRIPPING = YES;
413413
DEBUG_INFORMATION_FORMAT = dwarf;
414414
EAGER_LINKING = YES;
@@ -459,7 +459,7 @@
459459
CLANG_WARN_SUSPICIOUS_MOVE = YES;
460460
CLANG_WARN_UNREACHABLE_CODE = YES;
461461
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
462-
CURRENT_PROJECT_VERSION = 27;
462+
CURRENT_PROJECT_VERSION = 28;
463463
DEAD_CODE_STRIPPING = YES;
464464
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
465465
EAGER_LINKING = YES;
@@ -490,7 +490,7 @@
490490
APPLICATION_EXTENSION_API_ONLY = YES;
491491
DEFINES_MODULE = YES;
492492
DYLIB_COMPATIBILITY_VERSION = 1;
493-
DYLIB_CURRENT_VERSION = 27;
493+
DYLIB_CURRENT_VERSION = 28;
494494
DYLIB_INSTALL_NAME_BASE = "@rpath";
495495
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
496496
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -514,7 +514,7 @@
514514
APPLICATION_EXTENSION_API_ONLY = YES;
515515
DEFINES_MODULE = YES;
516516
DYLIB_COMPATIBILITY_VERSION = 1;
517-
DYLIB_CURRENT_VERSION = 27;
517+
DYLIB_CURRENT_VERSION = 28;
518518
DYLIB_INSTALL_NAME_BASE = "@rpath";
519519
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
520520
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

CHANGELOG.md

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

3+
## 2.0.2
4+
5+
- Swift 5.0 and 5.1 is no longer supported.
6+
- Increased minimum deployment versions (when installed via CocoaPods or Carthage) for Darwin platforms: macOS from 10.10
7+
to 10.13, iOS from 9.0 to 11.0, tvOS from 9.0 to 11.0, and watchOS from 2.0 to 4.0.
8+
39
## 2.0.1
410

511
- Added an explicit precondition on `bitsCount` argument in the default implementation of the

0 commit comments

Comments
 (0)