Skip to content

Commit bab8aa3

Browse files
committed
Prepare for 2.0.4 release
1 parent 21099fe commit bab8aa3

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

.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.3
6+
module_version: 2.0.4
77
copyright: '© 2024 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.3
10+
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/2.0.4
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.3"
4+
s.version = "2.0.4"
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.3</string>
18+
<string>2.0.4</string>
1919
<key>CFBundleVersion</key>
20-
<string>29</string>
20+
<string>30</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2024 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.3</string>
18+
<string>2.0.4</string>
1919
<key>CFBundleVersion</key>
20-
<string>29</string>
20+
<string>30</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.3</string>
18+
<string>2.0.4</string>
1919
<key>CFBundleVersion</key>
20-
<string>29</string>
20+
<string>30</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@
425425
CLANG_WARN_SUSPICIOUS_MOVE = YES;
426426
CLANG_WARN_UNREACHABLE_CODE = YES;
427427
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
428-
CURRENT_PROJECT_VERSION = 29;
428+
CURRENT_PROJECT_VERSION = 30;
429429
DEAD_CODE_STRIPPING = YES;
430430
DEBUG_INFORMATION_FORMAT = dwarf;
431431
EAGER_LINKING = YES;
@@ -479,7 +479,7 @@
479479
CLANG_WARN_SUSPICIOUS_MOVE = YES;
480480
CLANG_WARN_UNREACHABLE_CODE = YES;
481481
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
482-
CURRENT_PROJECT_VERSION = 29;
482+
CURRENT_PROJECT_VERSION = 30;
483483
DEAD_CODE_STRIPPING = YES;
484484
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
485485
EAGER_LINKING = YES;
@@ -512,7 +512,7 @@
512512
APPLICATION_EXTENSION_API_ONLY = YES;
513513
DEFINES_MODULE = YES;
514514
DYLIB_COMPATIBILITY_VERSION = 1;
515-
DYLIB_CURRENT_VERSION = 29;
515+
DYLIB_CURRENT_VERSION = 30;
516516
DYLIB_INSTALL_NAME_BASE = "@rpath";
517517
ENABLE_MODULE_VERIFIER = YES;
518518
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
@@ -539,7 +539,7 @@
539539
APPLICATION_EXTENSION_API_ONLY = YES;
540540
DEFINES_MODULE = YES;
541541
DYLIB_COMPATIBILITY_VERSION = 1;
542-
DYLIB_CURRENT_VERSION = 29;
542+
DYLIB_CURRENT_VERSION = 30;
543543
DYLIB_INSTALL_NAME_BASE = "@rpath";
544544
ENABLE_MODULE_VERIFIER = YES;
545545
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Changelog
22

3+
## 2.0.4
4+
5+
- Swift 5.2 is no longer supported.
6+
- Enable visionOS deployment target (except for SPM).
7+
- Add PrivacyInfo file.
8+
39
## 2.0.3
410

511
- There are now minimum deployment targets specified in Swift Package Manager manifest.
612

713
## 2.0.2
814

9-
- Swift 5.0 and 5.1 is no longer supported.
15+
- Swift 5.0 and 5.1 are no longer supported.
1016
- Increased minimum deployment versions (when installed via CocoaPods or Carthage) for Darwin platforms: macOS from 10.10
1117
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.
1218

0 commit comments

Comments
 (0)