Changelog of @hackage/from-string 1.0.0.2

Changelog for from-string

All notable changes to this project should be documented in this file.

The format is based on Keep a Changelog, and this project adheres to the Haskell Package Versioning Policy.

1.0.0.2 - 2025-10-24

Changed

  • Split the test code into ordinary test and code generation test. The code generation test will not be run by default (by Hackage or Stackage, for example).

1.0.0.1 - 2025-10-24

Changed

  • Set upper/lower bound for the dependencies: bytestring, text, and from.

1.0.0.0 - 2025-10-24

Initial release.

Added

  • From instances for string-related types. Any of the following types can be converted from one to another using from:
    • Prelude.String
    • Data.Text.Text
    • Data.Text.Lazy.Text
    • Data.Text.Lazy.Builder.Builder
    • Data.ByteString.ByteString
    • Data.ByteString.Lazy.ByteString
    • Data.ByteString.Builder.Builder
    • Data.ByteString.Short.ShortByteString
  • When the conversion crosses the boundary of the byte-sequence types and the character-sequence types, UTF-8 is assumed.