Skip to content

Latest commit

 

History

History
103 lines (87 loc) · 3.92 KB

File metadata and controls

103 lines (87 loc) · 3.92 KB

1.1.0

  • Changed ByteVector to be Long indexed instead of Int indexed.
  • Renamed ByteVector.view(Long => Byte, Long) to ByteVector.viewAt.

1.0.12

  • Fix correctness bug in ByteVector.fromBase64 when string contained ignored characters.

1.0.11

  • Improved performance of CRCs -- 32-bit CRCs improved by 600% and n-bit CRCs improved by 40%.

1.0.10

  • Improved performance of toInt and fromInt, toLong and fromLong, etc.
  • Further performance improvements in toBase64.
  • Improved performance of fromBase64 by over 200x
  • Added type-safe === to BitVector and ByteVector

1.0.9

  • Significant performance improvement in toBase64.
  • Fixed source links in ScalaDoc.

1.0.7

  • Improved performance of creating vectors from hex/bin.

1.0.6

  • Added deflate and inflate to both BitVector and ByteVector, which compresses the vector with ZLIB.
  • Added encrypt and decrypt to both BitVector and ByteVector.
  • Added takeWhile and dropWhile to ByteVector.
  • Added 4-argument overload of copyToArray to ByteVector.
  • Added ability to encode/decode stings to/from BitVectors and ByteVectors.

1.0.5

  • Added concat to the companions of BitVector and ByteVector.
  • Removed scala-reflect library from transitive dependencies.
  • Changed organization (groupId) from org.typelevel to org.scodec.

1.0.4

  • Significant performance improvements in BitVector See [#21] for details.
  • Added toByte/sliceToByte and toShort/sliceToShort to BitVector and ByteVector
  • Fixed bug in toInt/toLong on bit vectors with sizes not evenly divisible by 8

1.0.3

  • Significant performance improvements in :+ and ++ for ByteVector and BitVector. See [#16] and [#19] for details.

1.0.2

  • Published ScalaDoc links in POM so that other projects can link to ScalaDoc

1.0.1

  • Added toInt/toLong/fromInt/fromLong to BitVector and ByteVector
  • Changed toString of empty BitVector/ByteVector
  • More performant versions of ByteVector#toArray and ByteVector#toByteBuffer
  • Added ByteVector#copyToArray and copyToStream

1.0.0

  • Added scodec.bits.crc for calculating cyclic redundancy checks
  • Improved performance of drop
  • Added digest to BitVector and ByteVector
  • Renamed padToRight to padLeft and aliased padTo to padRight
  • Renamed leftShift/rightShift to shiftLeft/shiftRight
  • Added rotateLeft and rotateRight
  • Added serialization support for BitVector and ByteVector

1.0.0-RC2

  • Added BitVector#bytes as alias for toByteVector and ByteVector#bits as alias for toBitVector
  • Improved performance of sizeLessThan and sizeGreaterThan

1.0.0-RC1

  • Much more performant implementation of ByteVector by Paul C. that implements various operations in constant/log time
  • General performance improvements, including stack safe versions of many methods
  • Base 64 encoding/decoding
  • Revamped base encoding scheme that allows pluggable alphabets (e.g., uppercase hex, truthy binary, base64 url compat)
  • Many new collection like methods (e.g., headOption, init, last, lastOption, nonEmpty, padToRight, startsWith, endsWith, indexOfSlice, containsSlice, splice, patch, populationCount)
  • Reduced public API footprint
  • API docs

1.0.0-M2

  • Changed group id from com.github.scodec to org.typelevel
  • Added convenience constructors to BitVector and ByteVector from GenTraversableOnce
  • Fixed various bugs in SliceByteVector
  • Performance improvements

1.0.0-M1

  • Initial separation from scodec-core project
  • Much more performant implementation of BitVector by Paul C. that implements various operations in constant time
  • Lazy implementations of ByteVector by Paul C. that allow working performantly with Java IO/NIO