From 932ba01f39a463859f44f8365c7bd9c229cb43f2 Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Sun, 31 Aug 2025 22:20:09 +0300 Subject: [PATCH 1/2] Fix typo in `@since` pragma fixes #529 --- vector/src/Data/Vector/Unboxed.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector/src/Data/Vector/Unboxed.hs b/vector/src/Data/Vector/Unboxed.hs index f84b38f2..4548cd8c 100644 --- a/vector/src/Data/Vector/Unboxed.hs +++ b/vector/src/Data/Vector/Unboxed.hs @@ -1907,7 +1907,7 @@ iscanr = G.iscanr -- | /O(n)/ Right-to-left scan over a vector (strictly) with its index. -- --- @sinqce 0.12.2.0 +-- @since 0.12.2.0 iscanr' :: (Unbox a, Unbox b) => (Int -> a -> b -> b) -> b -> Vector a -> Vector b {-# INLINE iscanr' #-} iscanr' = G.iscanr' From 4d718b5de3e45fe3501cad8f8bb1e95b5e35b284 Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Tue, 2 Sep 2025 18:47:42 +0300 Subject: [PATCH 2/2] Drop undefiend variable in CI It's not defined and expands to empty string. CI works so we can simply drop it. Fixes #526 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f82dabd..cc0cc7f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: name: Cache ~/.cabal/store with: path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} - key: ${{ runner.os }}-${{ matrix.ghc }}--${{ github.Shah }}-CACHE_V3 + key: ${{ runner.os }}-${{ matrix.ghc }}---CACHE_V3 # ---------------- - name: "Install PAPI" run: |