Skip to content

Commit d3c3339

Browse files
authored
Merge pull request #1 from haskell-servant/master
bring changes
2 parents ab6f005 + 4fd688f commit d3c3339

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ matrix:
4444
- compiler: "ghc-8.2.2"
4545
# env: TEST=--disable-tests BENCH=--disable-benchmarks
4646
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.2.2], sources: [hvr-ghc]}}
47+
- compiler: "ghc-8.4.1"
48+
env: TEST=--disable-tests BENCH=--disable-benchmarks
49+
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.4.1], sources: [hvr-ghc]}}
4750

4851
before_install:
4952
- HC=${CC}
@@ -75,7 +78,7 @@ install:
7578
- rm -f cabal.project.freeze
7679
- cabal new-build -w ${HC} ${TEST} ${BENCH} --project-file="cabal.project" --dep -j2 all
7780
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks --project-file="cabal.project" --dep -j2 all
78-
- rm -rf "."/.ghc.environment.* "."/dist
81+
- rm -rf .ghc.environment.* "."/dist
7982
- DISTDIR=$(mktemp -d /tmp/dist-test.XXXX)
8083

8184
# Here starts the actual work to be performed for the package under test;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ vanilla (framework-free) javascript code.
99

1010
## Example
1111

12-
Read more about the following example [here](https://github.com/haskell-servant/servant/tree/master/servant-js/examples#examples).
12+
Read more about the following example [here](https://github.com/haskell-servant/servant-js/tree/master/examples).
1313

1414
``` haskell
1515
{-# LANGUAGE DataKinds #-}

servant-js.cabal

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: servant-js
22
version: 0.9.3.2
3+
x-revision: 1
34
synopsis: Automatically derive javascript functions to query servant webservices.
45
description:
56
Automatically derive javascript functions to query servant webservices.
@@ -21,7 +22,7 @@ build-type: Simple
2122
cabal-version: >=1.10
2223
homepage: http://haskell-servant.readthedocs.org/
2324
bug-reports: http://github.com/haskell-servant/servant-js/issues
24-
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2
25+
tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.1
2526
extra-source-files:
2627
include/*.h
2728
CHANGELOG.md
@@ -42,7 +43,7 @@ library
4243
Servant.JS.Internal
4344
Servant.JS.JQuery
4445
Servant.JS.Vanilla
45-
build-depends: base >= 4.7 && <4.11
46+
build-depends: base >= 4.7 && <4.12
4647
, base-compat >= 0.9
4748
, charset >= 0.3
4849
, lens >= 4
@@ -66,7 +67,7 @@ executable counter
6667
buildable: False
6768

6869
build-depends: base
69-
, aeson >= 0.7 && < 1.3
70+
, aeson >= 0.7 && < 1.4
7071
, filepath >= 1
7172
, lens >= 4
7273
, servant
@@ -85,10 +86,10 @@ test-suite spec
8586
other-modules:
8687
Servant.JSSpec
8788
Servant.JSSpec.CustomHeaders
88-
build-tool-depends: hspec-discover:hspec-discover >=2.3.0 && <2.5
89+
build-tool-depends: hspec-discover:hspec-discover >=2.3.0 && <2.6
8990
build-depends: base
9091
, base-compat
91-
, hspec >= 2.3.0 && <2.5
92+
, hspec >= 2.3.0 && <2.6
9293
, hspec-expectations
9394
, language-ecmascript >= 0.16
9495
, lens

0 commit comments

Comments
 (0)