Skip to content

Commit 199b77c

Browse files
committed
Prepare for 1.2.0 release
1 parent 9d9caa4 commit 199b77c

6 files changed

Lines changed: 17 additions & 30 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.2.0-test.3
6+
module_version: 1.2.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.2.0-test.3
10+
github_file_prefix: https://github.com/tsolomko/BitByteData/tree/1.2.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.2.0-test.3"
4+
s.version = "1.2.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.2.0-test.3</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>12</string>
20+
<string>13</string>
2121
<key>NSHumanReadableCopyright</key>
2222
<string>Copyright © 2018 Timofey Solomko. All rights reserved.</string>
2323
</dict>

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.2.0-test.3</string>
18+
<string>1.2.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>12</string>
20+
<string>13</string>
2121
</dict>
2222
</plist>

BitByteData.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
CLANG_WARN_SUSPICIOUS_MOVE = YES;
253253
CLANG_WARN_UNREACHABLE_CODE = YES;
254254
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
255-
CURRENT_PROJECT_VERSION = 12;
255+
CURRENT_PROJECT_VERSION = 13;
256256
DEBUG_INFORMATION_FORMAT = dwarf;
257257
ENABLE_STRICT_OBJC_MSGSEND = YES;
258258
ENABLE_TESTABILITY = YES;
@@ -298,7 +298,7 @@
298298
CLANG_WARN_SUSPICIOUS_MOVE = YES;
299299
CLANG_WARN_UNREACHABLE_CODE = YES;
300300
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
301-
CURRENT_PROJECT_VERSION = 12;
301+
CURRENT_PROJECT_VERSION = 13;
302302
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
303303
ENABLE_STRICT_OBJC_MSGSEND = YES;
304304
GCC_NO_COMMON_BLOCKS = YES;
@@ -326,7 +326,7 @@
326326
APPLICATION_EXTENSION_API_ONLY = YES;
327327
DEFINES_MODULE = YES;
328328
DYLIB_COMPATIBILITY_VERSION = 1;
329-
DYLIB_CURRENT_VERSION = 12;
329+
DYLIB_CURRENT_VERSION = 13;
330330
DYLIB_INSTALL_NAME_BASE = "@rpath";
331331
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
332332
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -351,7 +351,7 @@
351351
APPLICATION_EXTENSION_API_ONLY = YES;
352352
DEFINES_MODULE = YES;
353353
DYLIB_COMPATIBILITY_VERSION = 1;
354-
DYLIB_CURRENT_VERSION = 12;
354+
DYLIB_CURRENT_VERSION = 13;
355355
DYLIB_INSTALL_NAME_BASE = "@rpath";
356356
INFOPLIST_FILE = BitByteData.xcodeproj/BitByteData.plist;
357357
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";

CHANGELOG.md

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,15 @@
22

33
## 1.2.0
44

5-
### Test 3
6-
75
- Updated to support Swift 4.1.
8-
- Reverted "disable symbol stripping in archives generated by Carthage and published on GitHub Releases" change from
9-
1.1.1 update, since this problem was fixed in Carthage.
10-
- [Test] Several internal changes.
6+
- Added `bytesLeft` and `bytesRead` computed properties to `ByteReader`.
7+
- Added `int(fromBytes:)`, `uint16(fromBytes:)`, `uint32(fromBytes:)`, and `uint64(fromBytes:)` functions to all readers.
8+
- Added `byte(fromBits:)`, `uint16(fromBits:)`, `uint32(fromBits:)`, and `uint64(fromBits:)` functions to `LsbBitReader`
9+
and `MsbBitReader`, as well as `BitReader` protocol.
10+
- `int(fromBits:)` function now has a precondition that its argument doesn't exceed `Int` bit width.
11+
- Reverted "disable symbol stripping" change from 1.1.1 update, since underlying problem in Carthage was fixed.
1112
- Minor updates to documentation.
1213

13-
### Test 2
14-
15-
- Added `ByteReader.bytesLeft` and `ByteReader.bytesRead` computed properties.
16-
- Added `uint16(fromBytes:)`, `uint32(fromBytes:)` and `uint64(fromBytes:)` functions to all readers.
17-
- Added `byte(fromBits:)` function to all __bit__ readers.
18-
- Fixed introduced in Test 1 incorrect precondition checks related to exceeding maximum type bit width.
19-
20-
### Test 1
21-
22-
- Added `uint16(fromBits:)`, `uint32(fromBits:)` and `uint64(fromBits:)` functions to `LsbBitReader` and `MsbBitReader`,
23-
as well as `BitReader` protocol.
24-
- Added `int(fromBytes:)` function to `ByteReader`, `LsbBitReader` and `MsbBitReader`, as well as `BitReader` protocol.
25-
- `int(fromBits:)` function now checks in precondition that its argument doesn't exceed `Int` bit width.
26-
2714
## 1.1.1
2815

2916
- Added missing documentation for `bitsLeft` and `bitsRead` computed properties.

0 commit comments

Comments
 (0)