Skip to content

Commit 54d673b

Browse files
committed
Prepare for 2.0.3 release
1 parent c8bcf09 commit 54d673b

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: false
44
author: Timofey Solomko
55
module: BitByteData
6-
module_version: 2.0.2
6+
module_version: 2.0.3
77
copyright: '© 2023 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.2
10+
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/2.0.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 = "2.0.2"
4+
s.version = "2.0.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>2.0.2</string>
18+
<string>2.0.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>28</string>
20+
<string>29</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2023 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.2</string>
18+
<string>2.0.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>28</string>
20+
<string>29</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.2</string>
18+
<string>2.0.3</string>
1919
<key>CFBundleVersion</key>
20-
<string>28</string>
20+
<string>29</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
CLANG_WARN_SUSPICIOUS_MOVE = YES;
410410
CLANG_WARN_UNREACHABLE_CODE = YES;
411411
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
412-
CURRENT_PROJECT_VERSION = 28;
412+
CURRENT_PROJECT_VERSION = 29;
413413
DEAD_CODE_STRIPPING = YES;
414414
DEBUG_INFORMATION_FORMAT = dwarf;
415415
EAGER_LINKING = YES;
@@ -460,7 +460,7 @@
460460
CLANG_WARN_SUSPICIOUS_MOVE = YES;
461461
CLANG_WARN_UNREACHABLE_CODE = YES;
462462
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
463-
CURRENT_PROJECT_VERSION = 28;
463+
CURRENT_PROJECT_VERSION = 29;
464464
DEAD_CODE_STRIPPING = YES;
465465
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
466466
EAGER_LINKING = YES;
@@ -491,7 +491,7 @@
491491
APPLICATION_EXTENSION_API_ONLY = YES;
492492
DEFINES_MODULE = YES;
493493
DYLIB_COMPATIBILITY_VERSION = 1;
494-
DYLIB_CURRENT_VERSION = 28;
494+
DYLIB_CURRENT_VERSION = 29;
495495
DYLIB_INSTALL_NAME_BASE = "@rpath";
496496
ENABLE_MODULE_VERIFIER = YES;
497497
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
@@ -518,7 +518,7 @@
518518
APPLICATION_EXTENSION_API_ONLY = YES;
519519
DEFINES_MODULE = YES;
520520
DYLIB_COMPATIBILITY_VERSION = 1;
521-
DYLIB_CURRENT_VERSION = 28;
521+
DYLIB_CURRENT_VERSION = 29;
522522
DYLIB_INSTALL_NAME_BASE = "@rpath";
523523
ENABLE_MODULE_VERIFIER = YES;
524524
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;

CHANGELOG.md

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

3+
## 2.0.3
4+
5+
- There are now minimum deployment targets specified in Swift Package Manager manifest.
6+
37
## 2.0.2
48

59
- Swift 5.0 and 5.1 is no longer supported.

0 commit comments

Comments
 (0)