Skip to content

Commit

Permalink
Set upper bounds Lens-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Boucey committed Mar 6, 2021
1 parent b215ef9 commit 65f3dc5
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 21 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
- compiler: ghc-8.4.4
addons: {"apt":{"sources":[{"sourceline":"deb http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main","key_url":"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x063dab2bdc0b3f9fcebc378bff3aeacef6f88286"}],"packages":["ghc-8.4.4","cabal-install-3.2"]}}
os: linux
- compiler: ghc-8.2.2
addons: {"apt":{"sources":[{"sourceline":"deb http://ppa.launchpad.net/hvr/ghc/ubuntu xenial main","key_url":"https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x063dab2bdc0b3f9fcebc378bff3aeacef6f88286"}],"packages":["ghc-8.2.2","cabal-install-3.2"]}}
os: linux
before_install:
- HC=$(echo "/opt/$CC/bin/ghc" | sed 's/-/\//')
- WITHCOMPILER="-w $HC"
Expand Down
12 changes: 6 additions & 6 deletions cayley-client.cabal
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: cayley-client
version: 0.4.13
version: 0.4.14
synopsis: A Haskell client for the Cayley graph database
description: cayley-client implements the RESTful API of the Cayley graph database.
homepage: https://github.com/MichelBoucey/cayley-client
license: BSD3
license-file: LICENSE
author: Michel Boucey
maintainer: [email protected]
copyright: (c) 2015-2020 - Michel Boucey
copyright: (c) 2015-2021 - Michel Boucey
category: Database
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
, tests/testdata.nq

Tested-With: GHC ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1
Tested-With: GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.3 || ==8.10.1

Source-Repository head
Type: git
Expand All @@ -28,12 +28,12 @@ library
build-depends: aeson >= 0.8.0.2 && < 1.6
, attoparsec >= 0.12.1.6 && < 0.14
, base >= 4.8.1.0 && < 5
, bytestring >= 0.10.6 && < 0.11
, binary >= 0.7.5 && < 0.9
, bytestring >= 0.10.6 && < 0.12
, binary >= 0.7.5 && < 0.11
, exceptions >= 0.8.0.2 && < 0.11
, http-client >= 0.4.30 && < 0.8
, http-conduit >= 2.1.8 && < 2.4
, lens >= 4.12.3 && < 4.20
, lens >= 4.12.3 && < 5.1
, mtl >= 2.2.1 && < 2.3
, lens-aeson >= 1.0.0 && < 1.2
, text >= 1.2.2 && < 1.3
Expand Down
62 changes: 47 additions & 15 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,36 +1,68 @@
# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html
# This file was automatically generated by 'stack init'
#
# Some commonly used options have been documented as comments in this file.
# For advanced use and comprehensive documentation of the format, please see:
# https://docs.haskellstack.org/en/stable/yaml_configuration/

# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-8.0
# Resolver to choose a 'specific' stackage snapshot or a compiler version.
# A snapshot resolver dictates the compiler version and the set of packages
# to be used for project dependencies. For example:
#
# resolver: lts-3.5
# resolver: nightly-2015-09-21
# resolver: ghc-7.10.2
#
# The location of a snapshot can be provided as a file or url. Stack assumes
# a snapshot provided as a file might change, whereas a url resource does not.
#
# resolver: ./custom-snapshot.yaml
# resolver: https://example.com/snapshots/2018-01-01.yaml
resolver:
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/17/5.yaml

# Local packages, usually specified by relative directory name
# User packages to be built.
# Various formats can be used as shown in the example below.
#
# packages:
# - some-directory
# - https://example.com/foo/bar/baz-0.0.2.tar.gz
# subdirs:
# - auto-update
# - wai
packages:
- '.'

# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: []
- .
# Dependency packages to be pulled from upstream that are not in the resolver.
# These entries can reference officially published versions as well as
# forks / in-progress versions pinned to a git hash. For example:
#
# extra-deps:
# - acme-missiles-0.3
# - git: https://github.com/commercialhaskell/stack.git
# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a
#
# extra-deps: []

# Override default flag values for local packages and extra-deps
flags: {}
# flags: {}

# Extra package databases containing global packages
extra-package-dbs: []
# extra-package-dbs: []

# Control whether we use the GHC we find on the path
# system-ghc: true

#
# Require a specific version of stack, using version ranges
# require-stack-version: -any # Default
# require-stack-version: >= 1.0.0

# require-stack-version: ">=2.5"
#
# Override the architecture used by stack, especially useful on Windows
# arch: i386
# arch: x86_64

#
# Extra directories used by stack for building
# extra-include-dirs: [/path/to/dir]
# extra-lib-dirs: [/path/to/dir]

#
# Allow a newer minor version of GHC than the snapshot specifies
# compiler-check: newer-minor
pvp-bounds: both

0 comments on commit 65f3dc5

Please sign in to comment.