Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.13.1.0 #470

Merged
merged 4 commits into from
Oct 7, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ jobs:

steps:
# ----------------
- uses: actions/checkout@v2
- uses: actions/checkout@v4
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
# ----------------
- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
# ----------------
- uses: actions/cache@v1
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand Down
17 changes: 17 additions & 0 deletions vector/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# Changes in version 0.13.1.0

* Specialized variants of `findIndexR` are reexported for all vector
types. [#469](https://github.com/haskell/vector/pull/469)
* `UnboxViaPrim` could be used for deriving `Unbox` instances (`V_UnboxViaPrim`
constructor is exported) [#450](https://github.com/haskell/vector/pull/450)
* Fields of `Data.Vector.Fusion.Bundle.Size` are now strict
[#456](https://github.com/haskell/vector/pull/456)
* Compatibility with future GHC 9.10 release
[#462](https://github.com/haskell/vector/pull/462)
* Test suite no longer fails when built with QuickCheck-2.14
[#461](https://github.com/haskell/vector/pull/461)
* Doctests now work with current versions of GHC
[#465](https://github.com/haskell/vector/pull/466)
* Various documentation improvements


# Changes in version 0.13.0.0

* `mkType` from `Data.Vector.Generic` is deprecated in favor of
Expand Down
8 changes: 4 additions & 4 deletions vector/vector.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: vector
Version: 0.13.0.0
Version: 0.13.1.0
-- don't forget to update the changelog file!
License: BSD3
License-File: LICENSE
Expand Down Expand Up @@ -146,7 +146,7 @@ Library
vector.h

Build-Depends: base >= 4.9 && < 4.20
, primitive >= 0.6.4.0 && < 0.9
, primitive >= 0.6.4.0 && < 0.10
, deepseq >= 1.1 && < 1.6
, vector-stream >= 0.1 && < 0.2

Expand Down Expand Up @@ -279,7 +279,7 @@ test-suite vector-doctest
build-depends:
base -any
, doctest >=0.15 && <0.23
, primitive >= 0.6.4.0 && < 0.9
, primitive >= 0.6.4.0 && < 0.10
, vector -any

test-suite vector-inspection
Expand All @@ -294,7 +294,7 @@ test-suite vector-inspection
Inspect.DerivingVia.OtherFoo
build-depends:
base -any
, primitive >= 0.6.4.0 && < 0.9
, primitive >= 0.6.4.0 && < 0.10
, vector -any
, tasty
, tasty-inspection-testing >= 0.1
Expand Down
Loading