mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-04-21 02:07:43 +02:00
Remove dependencies upper bounds, version bump
This commit is contained in:
parent
3026e1e70d
commit
10215d4c14
@ -1,7 +1,11 @@
|
|||||||
## [_Unreleased_](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.1...main)
|
## [_Unreleased_](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.2...main)
|
||||||
|
|
||||||
None
|
None
|
||||||
|
|
||||||
|
## [v0.6.3.2](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.1...v0.6.3.2)
|
||||||
|
|
||||||
|
- Remove dependencies upper bounds
|
||||||
|
|
||||||
## [v0.6.3.1](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.0...v0.6.3.1)
|
## [v0.6.3.1](https://github.com/thoughtbot/yesod-auth-oauth2/compare/v0.6.3.0...v0.6.3.1)
|
||||||
|
|
||||||
- Relax dependencies bounds
|
- Relax dependencies bounds
|
||||||
|
|||||||
34
package.yaml
34
package.yaml
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: yesod-auth-oauth2
|
name: yesod-auth-oauth2
|
||||||
version: 0.6.3.1 # N.B. PVP-compliant Semver: 0.MAJOR.MINOR.PATCH
|
version: 0.6.3.2 # N.B. PVP-compliant Semver: 0.MAJOR.MINOR.PATCH
|
||||||
synopsis: OAuth 2.0 authentication plugins
|
synopsis: OAuth 2.0 authentication plugins
|
||||||
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
||||||
category: Web
|
category: Web
|
||||||
@ -25,22 +25,22 @@ dependencies:
|
|||||||
library:
|
library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
dependencies:
|
dependencies:
|
||||||
- aeson >=0.6 && <1.6
|
- aeson >=0.6
|
||||||
- bytestring >=0.9.1.4 && < 0.12
|
- bytestring >=0.9.1.4
|
||||||
- cryptonite >=0.25 && <0.30
|
- cryptonite >=0.25
|
||||||
- errors
|
- errors
|
||||||
- hoauth2 >=1.11.0 && <1.17
|
- hoauth2 >=1.11.0
|
||||||
- http-client >=0.4.0 && <0.8
|
- http-client >=0.4.0
|
||||||
- http-conduit >=2.0 && <3.0
|
- http-conduit >=2.0
|
||||||
- http-types >=0.8 && <0.13
|
- http-types >=0.8
|
||||||
- memory < 0.17
|
- memory
|
||||||
- microlens
|
- microlens
|
||||||
- mtl
|
- mtl
|
||||||
- safe-exceptions
|
- safe-exceptions
|
||||||
- text >=0.7 && <2.0
|
- text >=0.7
|
||||||
- uri-bytestring
|
- uri-bytestring
|
||||||
- yesod-auth >=1.6.0 && <1.7
|
- yesod-auth >=1.6.0
|
||||||
- yesod-core >=1.6.0 && <1.7
|
- yesod-core >=1.6.0
|
||||||
- unliftio
|
- unliftio
|
||||||
|
|
||||||
executables:
|
executables:
|
||||||
@ -53,16 +53,16 @@ executables:
|
|||||||
- -with-rtsopts=-N
|
- -with-rtsopts=-N
|
||||||
dependencies:
|
dependencies:
|
||||||
- yesod-auth-oauth2
|
- yesod-auth-oauth2
|
||||||
- aeson >=0.6 && <1.6
|
- aeson >=0.6
|
||||||
- aeson-pretty
|
- aeson-pretty
|
||||||
- bytestring >=0.9.1.4 && < 0.12
|
- bytestring >=0.9.1.4
|
||||||
- containers
|
- containers
|
||||||
- http-conduit >=2.0 && <3.0
|
- http-conduit >=2.0
|
||||||
- load-env
|
- load-env
|
||||||
- text >=0.7 && <2.0
|
- text >=0.7
|
||||||
- warp
|
- warp
|
||||||
- yesod
|
- yesod
|
||||||
- yesod-auth >=1.6.0 && <1.7
|
- yesod-auth >=1.6.0
|
||||||
when:
|
when:
|
||||||
- condition: ! "!(flag(example))"
|
- condition: ! "!(flag(example))"
|
||||||
buildable: false
|
buildable: false
|
||||||
|
|||||||
@ -4,10 +4,10 @@ cabal-version: 1.12
|
|||||||
--
|
--
|
||||||
-- see: https://github.com/sol/hpack
|
-- see: https://github.com/sol/hpack
|
||||||
--
|
--
|
||||||
-- hash: 6a490bb862e9336f14b079e2d9d0dee02bbf978e4cfb3e1c0c2d0daac3bd68a3
|
-- hash: 559101339cff93d29a5ea1439df2fa4e9d34133db852862ad86977d109053cd0
|
||||||
|
|
||||||
name: yesod-auth-oauth2
|
name: yesod-auth-oauth2
|
||||||
version: 0.6.3.1
|
version: 0.6.3.2
|
||||||
synopsis: OAuth 2.0 authentication plugins
|
synopsis: OAuth 2.0 authentication plugins
|
||||||
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
description: Library to authenticate with OAuth 2.0 for Yesod web applications.
|
||||||
category: Web
|
category: Web
|
||||||
@ -64,24 +64,24 @@ library
|
|||||||
src
|
src
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson >=0.6 && <1.6
|
aeson >=0.6
|
||||||
, base >=4.9.0.0 && <5
|
, base >=4.9.0.0 && <5
|
||||||
, bytestring >=0.9.1.4 && <0.12
|
, bytestring >=0.9.1.4
|
||||||
, cryptonite >=0.25 && <0.30
|
, cryptonite >=0.25
|
||||||
, errors
|
, errors
|
||||||
, hoauth2 >=1.11.0 && <1.17
|
, hoauth2 >=1.11.0
|
||||||
, http-client >=0.4.0 && <0.8
|
, http-client >=0.4.0
|
||||||
, http-conduit >=2.0 && <3.0
|
, http-conduit >=2.0
|
||||||
, http-types >=0.8 && <0.13
|
, http-types >=0.8
|
||||||
, memory <0.17
|
, memory
|
||||||
, microlens
|
, microlens
|
||||||
, mtl
|
, mtl
|
||||||
, safe-exceptions
|
, safe-exceptions
|
||||||
, text >=0.7 && <2.0
|
, text >=0.7
|
||||||
, unliftio
|
, unliftio
|
||||||
, uri-bytestring
|
, uri-bytestring
|
||||||
, yesod-auth >=1.6.0 && <1.7
|
, yesod-auth >=1.6.0
|
||||||
, yesod-core >=1.6.0 && <1.7
|
, yesod-core >=1.6.0
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
executable yesod-auth-oauth2-example
|
executable yesod-auth-oauth2-example
|
||||||
@ -92,17 +92,17 @@ executable yesod-auth-oauth2-example
|
|||||||
example
|
example
|
||||||
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
|
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
|
||||||
build-depends:
|
build-depends:
|
||||||
aeson >=0.6 && <1.6
|
aeson >=0.6
|
||||||
, aeson-pretty
|
, aeson-pretty
|
||||||
, base >=4.9.0.0 && <5
|
, base >=4.9.0.0 && <5
|
||||||
, bytestring >=0.9.1.4 && <0.12
|
, bytestring >=0.9.1.4
|
||||||
, containers
|
, containers
|
||||||
, http-conduit >=2.0 && <3.0
|
, http-conduit >=2.0
|
||||||
, load-env
|
, load-env
|
||||||
, text >=0.7 && <2.0
|
, text >=0.7
|
||||||
, warp
|
, warp
|
||||||
, yesod
|
, yesod
|
||||||
, yesod-auth >=1.6.0 && <1.7
|
, yesod-auth >=1.6.0
|
||||||
, yesod-auth-oauth2
|
, yesod-auth-oauth2
|
||||||
if !(flag(example))
|
if !(flag(example))
|
||||||
buildable: False
|
buildable: False
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user