Skip to content

Releases: VincentFoulon80/encoding_rs_transcode

v0.8.3

17 Apr 15:19
d284674

Choose a tag to compare

🐞 Bugfixes

  • [writer] Fix issue when writing big files, where end of buffer could be skipped without notice
    This bug resulted in the write method being called without inspecting how many characters has been effectively written. Solved by calling write_all instead.

v0.8.2

06 Apr 06:43
b48b798

Choose a tag to compare

💥 Breakings

  • Removed Seek from implementation, since transcoding something can change its length. This implementation could cause long term issues so it has been removed.

v0.8.1

05 Apr 19:50
20df6f1

Choose a tag to compare

📖 Documentation

  • Add crate & module level documentation

v0.8.0

05 Apr 19:47
4125487

Choose a tag to compare

🆕 Features

  • Add a basic writer that transcodes its input into another writer
  • Add raw transcode from a byte array to another byte array