happstack-static-routing 0.7.0.0 → 0.7.0.1
raw patch · 3 files changed
+12/−15 lines, 3 filesdep −transformersdep ~basedep ~containersdep ~happstack-serversetup-changedPVP ok
version bump matches the API change (PVP)
Dependencies removed: transformers
Dependency ranges changed: base, containers, happstack-server, list-tries
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- Setup.lhs +0/−3
- happstack-static-routing.cabal +9/−12
CHANGELOG.md view
@@ -1,3 +1,6 @@+# happstack-static-routing-0.7.0.1 (2024-09-16)+* Drop support for GHC < 8.10.+ # happstack-static-routing-0.7.0.0 (2022-02-15) * Improve functional dependencies of 'Path'. * Generalize the type signature of 'compile'.
− Setup.lhs
@@ -1,3 +0,0 @@-#!/usr/bin/env runhaskell-> import Distribution.Simple-> main = defaultMain
happstack-static-routing.cabal view
@@ -1,5 +1,6 @@+Cabal-version: 3.0 Name: happstack-static-routing-Version: 0.7.0.0+Version: 0.7.0.1 Synopsis: Support for static URL routing with overlap detection for Happstack. Description: If you have a large routing table in Happstack and want@@ -12,18 +13,15 @@ and build unambiguous routing tables where the order of the handlers is irrelevant. -License: BSD3+License: BSD-3-Clause License-file: LICENSE Author: Scrive AB-Maintainer: Gracjan Polak <gracjanpolak@gmail.com>,- Jonathan Jouty <jonathan@scrive.com>,- Mikhail Glushenkov <mikhail@scrive.com>+Maintainer: Andrzej Rybczak <andrzej@rybczak.net>, Homepage: https://github.com/scrive/happstack-static-routing Stability: Development Category: Web, Distributed Computing Build-type: Simple-Cabal-version: >=1.10-Tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.1+Tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.6, 9.8.2, 9.10.1 } Extra-source-files: README.md, CHANGELOG.md source-repository head@@ -35,11 +33,10 @@ hs-source-dirs: src ghc-options: -Wall - build-depends: base >= 4.12 && < 5- , containers >= 0.3 && < 0.7- , happstack-server >= 6 && < 8- , list-tries >= 0.4 && < 0.7- , transformers >= 0.2 && < 0.6+ build-depends: base >= 4.14 && < 5+ , containers >= 0.6+ , happstack-server >= 7+ , list-tries >= 0.6 exposed-modules: Happstack.StaticRouting Happstack.StaticRouting.Internal