Skip to content

Commit 52ac29f

Browse files
committed
Prepare for 1.4.0 release
1 parent 4842fe1 commit 52ac29f

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

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@
374374
CLANG_WARN_SUSPICIOUS_MOVE = YES;
375375
CLANG_WARN_UNREACHABLE_CODE = YES;
376376
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
377-
CURRENT_PROJECT_VERSION = 17;
377+
CURRENT_PROJECT_VERSION = 18;
378378
DEBUG_INFORMATION_FORMAT = dwarf;
379379
ENABLE_STRICT_OBJC_MSGSEND = YES;
380380
ENABLE_TESTABILITY = YES;
@@ -420,7 +420,7 @@
420420
CLANG_WARN_SUSPICIOUS_MOVE = YES;
421421
CLANG_WARN_UNREACHABLE_CODE = YES;
422422
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
423-
CURRENT_PROJECT_VERSION = 17;
423+
CURRENT_PROJECT_VERSION = 18;
424424
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
425425
ENABLE_STRICT_OBJC_MSGSEND = YES;
426426
GCC_NO_COMMON_BLOCKS = YES;
@@ -448,7 +448,7 @@
448448
APPLICATION_EXTENSION_API_ONLY = YES;
449449
DEFINES_MODULE = YES;
450450
DYLIB_COMPATIBILITY_VERSION = 1;
451-
DYLIB_CURRENT_VERSION = 17;
451+
DYLIB_CURRENT_VERSION = 18;
452452
DYLIB_INSTALL_NAME_BASE = "@rpath";
453453
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
454454
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -473,7 +473,7 @@
473473
APPLICATION_EXTENSION_API_ONLY = YES;
474474
DEFINES_MODULE = YES;
475475
DYLIB_COMPATIBILITY_VERSION = 1;
476-
DYLIB_CURRENT_VERSION = 17;
476+
DYLIB_CURRENT_VERSION = 18;
477477
DYLIB_INSTALL_NAME_BASE = "@rpath";
478478
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
479479
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.0
4+
5+
- Significantly improved performance of `ByteReader`, `LsbBitReader` and `MsbBitReader`.
6+
37
## 1.3.1
48

59
- Improved performance of `ByteReader`'s functions and properties when compiled with Swift 4.2 compiler.

0 commit comments

Comments
 (0)