lackey 1.0.13 → 1.0.14
raw patch · 3 files changed
+14/−26 lines, 3 filesdep ~basedep ~hspecdep ~servantPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, hspec, servant, servant-foreign, text
API changes (from Hackage documentation)
Files
- LICENSE.markdown +1/−1
- README.markdown +1/−1
- lackey.cabal +12/−24
LICENSE.markdown view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Taylor Fausak+Copyright (c) 2021 Taylor Fausak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
README.markdown view
@@ -1,6 +1,6 @@ # [Lackey][] -[](https://travis-ci.org/tfausak/lackey)+[](https://github.com/tfausak/lackey/actions/new) [](https://hackage.haskell.org/package/lackey) [](https://www.stackage.org/package/lackey)
lackey.cabal view
@@ -1,7 +1,7 @@-cabal-version: 2.2+cabal-version: >= 1.10 name: lackey-version: 1.0.13+version: 1.0.14 synopsis: Generate Ruby clients from Servant APIs. description: Lackey generates Ruby clients from Servant APIs.@@ -19,47 +19,35 @@ location: https://github.com/tfausak/lackey type: git -common basics+library+ build-depends:+ base >= 4.13.0 && < 4.16+ , servant >= 0.16.2 && < 0.19+ , servant-foreign >= 0.15 && < 0.16+ , text >= 1.2.4 && < 1.3 default-language: Haskell2010+ exposed-modules: Lackey ghc-options: -Weverything- -Wno-all-missed-specialisations -Wno-implicit-prelude -Wno-missing-exported-signatures- -Wno-missing-import-lists- -Wno-safe -Wno-unsafe-- if impl(ghc >= 8.8)- ghc-options:- -Wno-missing-deriving-strategies+ hs-source-dirs: src/lib if impl(ghc >= 8.10) ghc-options: -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -library- import: basics-- build-depends:- base >= 4.9.0 && < 4.15- , servant >= 0.8.1 && < 0.18- , servant-foreign >= 0.8.1 && < 0.16- , text >= 1.2.2 && < 1.3- exposed-modules: Lackey- hs-source-dirs: src/lib- test-suite test- import: basics- build-depends: base -any- , hspec >= 2.2.3 && < 2.8+ , hspec >= 2.7.6 && < 2.8 , lackey -any , servant -any , servant-foreign -any , text -any+ default-language: Haskell2010 hs-source-dirs: src/test main-is: Main.hs type: exitcode-stdio-1.0