Skip to content

Commit

Permalink
Add explicit dependency bounds and changelog (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
erewok authored Jan 12, 2019
1 parent c14fea9 commit d570351
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*~
.stack-work/
build/
dist/*
examples/*py
__pycache__
dist-newstyle
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog


## 0.1.1.1

**11 Jan 2019

- Merge PR#13 (thanks @exarkun)
- Merge PR#15 (thanks @exarkun)
- Re-enable various failing tests
- Clean-up quoting
- Add CHANGELOG
- Add specific dependency bounds

## 0.1.1.0

**30 Nov 2018**

- Merge PR#2
- Fix dependencies to more specific versions.
- Bump Stackage to version LTS-12.20 and build against GHC 8.4.3 (using Cabal `new-build`)
- Eliminate all the re-exports in Servant.PY.Internal (don't remember why I did this in the first place...)
21 changes: 10 additions & 11 deletions servant-py.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: servant-py
version: 0.1.0.4
version: 0.1.1.0
synopsis: Automatically derive python functions to query servant webservices.
description:
Automatically derive python functions to query servant webservices.
Expand Down Expand Up @@ -27,20 +27,20 @@ library
, Servant.PY.Requests
, Servant.PY.Internal
, Servant.PY.Python
build-depends: base >= 4.7 && < 5
, aeson
, bytestring
, charset
, lens
, servant-foreign
, servant
, text
build-depends: base >= 4.7 && < 5
, aeson >= 1.3.1.1 && < 1.4
, bytestring >= 0.10.8.1 && < 0.11
, charset >= 0.3.7.1 && < 0.4
, lens >= 4.16.1 && < 5
, servant-foreign >= 0.11 && < 0.16
, servant >= 0.11 && < 0.16
, text >= 1.2.3.0 && < 1.3
default-language: Haskell2010
default-extensions: OverloadedStrings
ghc-options: -Wall

executable servant-py-exe
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: examples

if flag(example)
Expand Down Expand Up @@ -79,7 +79,6 @@ test-suite servant-py-test
, base-compat
, bytestring
, hspec
, hspec-expectations
, lens
, QuickCheck
, servant
Expand Down

0 comments on commit d570351

Please sign in to comment.