Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.68 KB

CHANGELOG.md

File metadata and controls

49 lines (39 loc) · 1.68 KB

Changelog Crates.io

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

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

Note: uncon_derive has its own changelog separate from this one.

[Unreleased]

Added

  • Generic FromUnchecked implementations:

    From Into
    U Option<T>

1.1.0 - 2017-09-17

Added

  • Generic FromUnchecked implementations:

    From Into
    &{,mut} [U] &{,mut} [T]
    Vec<U> Vec<T>
    Box<U> Box<T>
    Box<[U]> Box<[T]>
    {Arc,Rc}<U> {Arc,Rc}<T>

1.0.0 - 2017-09-11

Added

  • FromUnchecked and IntoUnchecked traits.

  • #[no_std] support

  • IntoUnchecked<U> generic implementation for T where U: FromUnchecked<T>

  • Generic FromUnchecked implementations:

    From Into
    &{,mut} U &{,mut} T
    *{const,mut} T &{,mut} T
    &{,mut} [u8] &{,mut} str
    Vec<u8> String
    Box<[u8]> String
    *mut T Box<T>
    *const T {Arc,Rc}<T>