This commit is contained in:
bluss
2016-09-28 11:12:39 +02:00
parent 3d2dcb4252
commit f331bb1228
3 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -6,7 +6,7 @@ A vector with fixed capacity. Requires Rust 1.2+.
Please read the `API documentation here`__
__ http://bluss.github.io/arrayvec
__ https://bluss.github.io/arrayvec
|build_status|_ |crates|_ |crates2|_
@@ -22,6 +22,12 @@ __ http://bluss.github.io/arrayvec
Recent Changes (arrayvec)
-------------------------
- 0.3.19
- Add new crate feature ``use_generic_array`` which allows using their
``GenericArray`` just like a regular fixed size array for the storage
of an ``ArrayVec``.
- 0.3.18
- Fix bounds check in ``ArrayVec::insert``!