servant-auth-docs 0.2.10.0 → 0.2.10.1
raw patch · 2 files changed
+22/−23 lines, 2 filesdep ~QuickCheckdep ~basedep ~doctestnew-uploader
Dependency ranges changed: QuickCheck, base, doctest, hspec, lens, servant, servant-docs
Files
- CHANGELOG.md +1/−1
- servant-auth-docs.cabal +21/−22
CHANGELOG.md view
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)-and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).+and this project adheres to [PVP Versioning](https://pvp.haskell.org/). ## [Unreleased]
servant-auth-docs.cabal view
@@ -1,46 +1,45 @@+cabal-version: 2.2 name: servant-auth-docs-version: 0.2.10.0+version: 0.2.10.1 synopsis: servant-docs/servant-auth compatibility description: This package provides instances that allow generating docs from <https://hackage.haskell.org/package/servant servant> APIs that use <https://hackage.haskell.org/package/servant-auth servant-auth's> @Auth@ combinator. .- For a quick overview of the usage, see the <http://github.com/haskell-servant/servant-auth#readme README>.+ For a quick overview of the usage, see the <https://github.com/haskell-servant/servant/tree/master/servant-auth#readme README>. category: Web, Servant, Authentication-homepage: http://github.com/haskell-servant/servant-auth#readme-bug-reports: https://github.com/haskell-servant/servant-auth/issues+homepage: https://github.com/haskell-servant/servant/tree/master/servant-auth#readme+bug-reports: https://github.com/haskell-servant/servant/issues author: Julian K. Arni maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni-license: BSD3+license: BSD-3-Clause license-file: LICENSE-tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC==8.4.3+tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Custom-cabal-version: >= 1.10 extra-source-files: CHANGELOG.md custom-setup setup-depends:- base, Cabal, cabal-doctest >=1.0.2 && <1.1+ base < 4.19, Cabal < 4, cabal-doctest >=1.0.6 && <1.1 source-repository head type: git- location: https://github.com/haskell-servant/servant-auth+ location: https://github.com/haskell-servant/servant library hs-source-dirs: src- default-extensions: AutoDeriveTypeable ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators+ default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall build-depends:- base >= 4.8 && < 4.12- , text- , servant-docs- , servant- , servant-auth == 0.3.*- , lens+ base >= 4.10 && < 4.19+ , servant-docs >= 0.13 && < 0.14+ , servant >= 0.13 && < 0.21+ , servant-auth == 0.4.*+ , lens >= 4.16.1 && <5.3 exposed-modules: Servant.Auth.Docs default-language: Haskell2010@@ -50,9 +49,9 @@ main-is: doctests.hs build-depends: base,- doctest >= 0.11.3 && <0.16, servant-auth-docs,- QuickCheck >= 2.8 && <2.12,+ doctest >= 0.16 && < 0.22,+ QuickCheck >= 2.11.3 && < 2.15, template-haskell ghc-options: -Wall -threaded hs-source-dirs: test@@ -63,9 +62,9 @@ main-is: Spec.hs hs-source-dirs: test- default-extensions: AutoDeriveTypeable ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators+ default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall- build-tool-depends: hspec-discover:hspec-discover+ build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 -- dependencies with bounds inherited from the library stanza build-depends:@@ -79,7 +78,7 @@ -- test dependencies build-depends: servant-auth-docs- , hspec > 2 && < 3- , QuickCheck >= 2.8 && < 2.12+ , hspec >= 2.5.5 && < 2.11+ , QuickCheck >= 2.11.3 && < 2.15 default-language: Haskell2010