Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions vector/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changes in version 0.13.2.0

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

# Changes in version 0.13.1.0

Expand Down
2 changes: 1 addition & 1 deletion vector/vector.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Cabal-Version: 3.0
Build-Type: Simple
Name: vector
Version: 0.13.1.0
Version: 0.13.2.0
-- don't forget to update the changelog file!
License: BSD-3-Clause
License-File: LICENSE
Expand Down
Loading