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

Bump versions to support GHC 9.2.5 #53

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,25 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
cabal: ["3.4"]
cabal: ["3.6"]
ghc:
- "8.6.5"
- "8.8.4"
- "8.10.4"
- "9.0.1"
- "9.2.5"
exclude:
- os: macOS-latest
ghc: 9.2.5
- os: macOS-latest
ghc: 9.0.1
- os: macOS-latest
ghc: 8.8.4
- os: macOS-latest
ghc: 8.6.5

- os: windows-latest
ghc: 9.2.5
- os: windows-latest
ghc: 9.0.1
- os: windows-latest
Expand Down Expand Up @@ -78,8 +83,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
stack: ["2.5"]
ghc: ["8.10.4"]
stack: ["2.9"]
ghc: ["9.2.5"]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 4 additions & 3 deletions prolens.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: prolens
version: 0.0.0.1
version: 0.0.0.2
synopsis: Profunctor-based lightweight implementation of optics
description:
Lightweight and performance implementation of optics — lenses, prisms, traversals.
Expand All @@ -14,7 +14,7 @@ license: MPL-2.0
license-file: LICENSE
author: Veronika Romashkina, Dmitrii Kovanikov
maintainer: Kowainik <[email protected]>
copyright: 2020-2021 Kowainik
copyright: 2020-2023 Kowainik
category: Data, Optics, Lenses
build-type: Simple
extra-doc-files: README.md
Expand All @@ -23,13 +23,14 @@ tested-with: GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.4
GHC == 9.0.1
GHC == 9.2.5

source-repository head
type: git
location: https://github.com/kowainik/prolens.git

common common-options
build-depends: base >= 4.12.0.0 && < 4.16
build-depends: base >= 4.12.0.0 && <= 4.16.4.0

ghc-options: -Wall
-Wcompat
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resolver: lts-17.5
resolver: lts-20.23