slice-of-array 0.2.0

Extension traits for casting between slices and slices of arrays. (&[T] <-> &[[T; n]])
Documentation
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0] - 2018-04-26
### Added
- This change log.
- `IsSliceomorphic` now explicitly supports the use case of impls on wrapper types around arrays, so that I can sleep at night.
- `<[T]>::to_array()`, because type inference hates `as_array().clone()`.

### Changed
- `IsSliceomorphic::array_len` has been replaced with `IsSliceomorphic::LEN`.
- Accordingly, the minimum supported version of Rust has bumped to... hell, idunno.

## 0.1.1 - 2017-10-13
### Added
- `<[[T; n]]>::flat`
- `<[T]>::nest`
- `<[T]>::as_array`
- ...and `mut` variants.

[Unreleased]: https://github.com/ExpHP/slice-of-array/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/ExpHP/slice-of-array/compare/v0.1.1...v0.2.0