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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ["8.4", "8.6", "8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8", "9.10"]
ghc: ["8.4", "8.6", "8.8", "8.10", "9.0", "9.2", "9.4", "9.6", "9.8", "9.10", "9.12"]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.0.0.9

- Further loosen the bound on `containers`.
- Support for GHC 9.12.

# 0.0.0.8

Loosen the bound on `containers`.
Expand Down
4 changes: 2 additions & 2 deletions semilattices.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: semilattices
version: 0.0.0.8
version: 0.0.0.9
synopsis: Semilattices
description: Join- and meet-semilattices, with optional upper and lower bounds, and a variety of instances for each.
homepage: https://github.com/robrix/semilattices
Expand Down Expand Up @@ -67,7 +67,7 @@ library
Data.Semilattice.Upper
build-depends:
, base >=4.9 && <5
, containers >=0.5 && <0.8
, containers >=0.5 && <0.9
, unordered-containers >=0.2.20 && <0.3
hs-source-dirs: src
default-language: Haskell2010
Expand Down