Releases: tsolomko/BitByteData
2.0.4
- Swift 5.2 is no longer supported.
- Added visionOS as a possible deployment target (probably, will only work for Carthage users). (Thanks to @Dukandar for the suggestion!)
- Added PrivacyInfo.xcprivacy file.
Comment: BitByteData does not collect and obviously does not send any data anywhere, so the file is essentially empty and was added just to prevent potential problems with Apple bureaucracy for the framework users.
2.0.3
2.0.2
- Swift 5.0 and 5.1 are no longer supported.
- Increased minimum deployment versions for Darwin platforms: macOS from 10.10 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.
Comment: This change should improve support of modern Xcode versions (e.g. Xcode 14).
2.0.1
- Added an explicit precondition on
bitsCountargument in the default implementation of the
BitWriter.write(signedNumber:bitsCount:representation:)function.
Comment: This check was still present later in the implementation, but now it happens earlier and it is more explicit and documented.
- Added missing documentation about a precondition in the
write(unsignedNumber:bitsCount:)function of theLsbBitWriterandMsbBitWriterfunctions.
2.0.0
In this release the API design of BitByteData has been reworked. Additionally, new functionality for correctly dealing with signed integers and their bit representations has been added. You may find a new Migration to 2.0 section in the README which should be helpful in adopting the new changes. You may also refer to the API Design document for some additional context and reasoning behind the changes.
Byte Reading
ByteReaderclass has been renamed toLittleEndianByteReader.LittleEndianByteReader(ex-ByteReader) is now a final class.LsbBitReaderandMsbBitReaderare no longer its subclasses.
- Added a new
BigEndianByteReaderclass with the same set of APIs asLittleEndianByteReader. - Added a
ByteReaderprotocol which inheritsAnyObject.- Most of the methods and properties of the previously existing
ByteReaderclass are now requirements of the new protocol. ByteReaderprovides default implementations for the initializer, which performs conversion from aBitReader, and for thebytesLeft,bytesRead, andisFinishedproperties (all of these are not protocol requirements).- In addition,
ByteReaderprovides a default implementation for theint(fromBytes:)method. - Both
LittleEndianByteReaderandBigEndianByteReadernow conform to theByteReaderprotocol.
- Most of the methods and properties of the previously existing
Bit Reading
- Added a
SignedNumberRepresentationenum with five cases and two instance methods. - The
BitReaderprotocol now inherits theByteReaderprotocol.- Two new method requirements have been added to the
BitReaderprotocol:signedInt(fromBits:representation:)andadvance(by:). BitReadernow provides a default implementation forint(fromBits:).
- Two new method requirements have been added to the
- It is no longer possible to set the
offsetproperty of theLsbBitReaderandMsbBitReaderclasses if they are not aligned (a precondition crash occurs instead). - The
signedInt(fromBits:representation:)function has been added to theLsbBitReaderandMsbBitReaderclasses with the default value ofSignedNumberRepresentation.twoComplementNegativesfor therepresentationargument.
Bit Writing
- Two new method requirements have been added to the
BitWriterprotocol:write(unsignedNumber:bitsCount:)andwrite(signedNumber:bitsCount:representation:). BitWriternow provides default implementations forwrite(signedNumber:bitsCount:representation:)andwrite(number:bitsCount:).- The default implementation of the
write(number:bitsCount:)function now has a precondition crash if thebitsCountargument exceeds the bit width of the integer type on the current platform.
- The default implementation of the
- The
write(unsignedNumber:bitsCount:)function of theLsbBitWriterandMsbBitWriterclasses now has a precondition crash if thebitsCountargument exceeds the bit width of the integer type on the current platform.
General
- Swift 4.2 is no longer supported. For reference, the following platforms and Swift versions are supported at the time of this release:
- Apple platforms: Swift 5.0+
- Linux: Swift 5.0+
- Windows: Swift 5.4+
- Minimum iOS deployment version (when installed via CocoaPods or Carthage) is now 9.0.
- Documentation has been updated.
- Added documentation for new APIs.
- A couple of missing precondition checks are now properly documented.
- Existing documentation has been made more concise and slightly more grammatically correct.
2.0.0 Test 2
In the second test release of 2.0.0 the documentation has been updated, so now all new APIs are documented.
2.0.0 Test 1
This is a first test release of the upcoming major update, 2.0.0. It includes probably all of the planned functional and API changes. The documentation, though, is extremely outdated, and will be updated for the second test release.