packages feed

from-string-1.0.0.0: CHANGELOG.md

# Changelog for `from-string`

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).

## Unreleased

(no changes yet)

## 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.