Skip to content

Commit

Permalink
Merge pull request #470 from Shimuuar/new-release
Browse files Browse the repository at this point in the history
Prepare release 0.13.1.0
  • Loading branch information
Shimuuar authored Oct 7, 2023
2 parents c88d0d2 + 75e10ec commit 79bdd2e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
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

0 comments on commit 79bdd2e

Please sign in to comment.