Skip to content

Commit d9d0d46

Browse files
authored
Prepare release of vector-0.13.2.0 (#514)
1 parent 49be9db commit d9d0d46

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

vector/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changes in version 0.13.2.0
22

3+
* Strict boxed vector `Data.Vector.Strict` and `Data.Vector.Strict.Mutable` is
4+
added (#488). it ensures that all values in the vector are evaluated to WHNF.
5+
* `DoNotUnboxStrict`, `DoNotUnboxLazy`, and `DoNotUnboxNormalForm` wrapper are
6+
added for defining unbox instances for types that contain not unboxable fields.
7+
[#503](https://github.com/haskell/vector/issues/506),
8+
[#508](https://github.com/haskell/vector/pull/508)
9+
* `spanR` and `breakR` were added [#476](https://github.com/haskell/vector/pull/476).
10+
They allow parsing vector from the right.
311
* We had some improvements on `*.Mutable.{next,prev}Permutation{,By}`
412
[#498](https://github.com/haskell/vector/pull/498):
513
* Add `*.Mutable.prevPermutation{,By}` and `*.Mutable.nextPermutationBy`
@@ -8,6 +16,10 @@
816
the full enumeration of all the permutations of `[1..n]` took Omega(n*n!), but it now takes O(n!).
917
* Add tests for `{next,prev}Permutation`
1018
* Add benchmarks for `{next,prev}Permutation`
19+
* Cabal >= 3.0 is now required for building package (#481).
20+
* `vector:benchmarks-O2` public sublibrary containing benchmarks is added (#481).
21+
* Type family `Mutable` provides instances for arrays from `primitive`.
22+
* Various documentation improvements.
1123

1224
# Changes in version 0.13.1.0
1325

vector/vector.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Cabal-Version: 3.0
22
Build-Type: Simple
33
Name: vector
4-
Version: 0.13.1.0
4+
Version: 0.13.2.0
55
-- don't forget to update the changelog file!
66
License: BSD-3-Clause
77
License-File: LICENSE

0 commit comments

Comments
 (0)