1# Changelog
2
3## 1.1.1
4
5* [saethlin](https://github.com/saethlin) contributed many PRs (
6  [127](https://github.com/Lokathor/tinyvec/pull/127),
7  [128](https://github.com/Lokathor/tinyvec/pull/128),
8  [129](https://github.com/Lokathor/tinyvec/pull/129),
9  [131](https://github.com/Lokathor/tinyvec/pull/131),
10  [132](https://github.com/Lokathor/tinyvec/pull/132)
11  ) to help in several benchmarks.
12
13## 1.1.0
14
15* [slightlyoutofphase](https://github.com/slightlyoutofphase)
16added "array splat" style syntax to the `array_vec!` and `tiny_vec!` macros.
17You can now write `array_vec![true; 5]` and get a length 5 array vec full of `true`,
18just like normal array initialization allows. Same goes for `tiny_vec!`.
19([pr 118](https://github.com/Lokathor/tinyvec/pull/118))
20* [not-a-seagull](https://github.com/not-a-seagull)
21added `ArrayVec::into_inner` so that you can get the array out of an `ArrayVec`.
22([pr 124](https://github.com/Lokathor/tinyvec/pull/124))
23
24## 1.0.2
25
26* Added license files for the MIT and Apache-2.0 license options.
27
28## 1.0.1
29
30* Display additional features in the [docs.rs/tinyvec](https://docs.rs/tinyvec) documentation.
31
32## 1.0.0
33
34Initial Stable Release.
35