Skip to content

Commit

Permalink
Expand to be compatible with LTS 22.43 (#136)
Browse files Browse the repository at this point in the history
After submitting your PR:

- [x] Update the Changelog.md file with a link to your PR
- [x] Bumped the version number if there isn't an `(unreleased)` on the
Changelog
- [x] Check that CI passes (or if it fails, for reasons unrelated to
your change, like CI timeouts)
  • Loading branch information
adrian-chen authored Jan 8, 2025
1 parent 649186a commit 97a0f14
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.6.6
compilerKind: ghc
compilerVersion: 9.6.6
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.2
compilerKind: ghc
compilerVersion: 9.4.2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.0.1.0 (2025-01-09)
* [#136](https://github.com/MercuryTechnologies/slack-web/pull/136)
Bumps the version ranges for dependencies to be compatible with LTS 22.43.

# 2.0.0.4 (2024-09-15)
* [#135](https://github.com/MercuryTechnologies/slack-web/pull/135)
Improves attachement support by providing clients wih the raw JSON value
Expand Down
12 changes: 6 additions & 6 deletions slack-web.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: slack-web
version: 2.0.0.4
version: 2.0.1.0

build-type: Simple

Expand Down Expand Up @@ -32,7 +32,7 @@ extra-source-files:

category: Web

tested-with: GHC == 8.10.7 || ==9.2.4 || == 9.4.2
tested-with: GHC == 8.10.7 || ==9.2.4 || == 9.4.2 || == 9.6.6

extra-source-files:
CHANGELOG.md
Expand Down Expand Up @@ -133,7 +133,7 @@ library
Web.Slack.AesonUtils
build-depends:
aeson >= 2.0 && < 2.2
, base >= 4.11 && < 4.18
, base >= 4.11 && < 4.19
, base16-bytestring
, bytestring
, classy-prelude
Expand All @@ -152,9 +152,9 @@ library
, mtl
, refined
, scientific
, servant >= 0.16 && < 0.20
, servant-client >= 0.16 && < 0.20
, servant-client-core >= 0.16 && < 0.20
, servant >= 0.16 && < 0.21
, servant-client >= 0.16 && < 0.21
, servant-client-core >= 0.16 && < 0.21
, string-conversions
, string-variants >= 0.1.0.1
, text (>= 1.2 && < 1.3) || (>= 2.0 && < 2.1)
Expand Down

0 comments on commit 97a0f14

Please sign in to comment.