diff --git a/hoauth2-demo/hoauth2-demo.cabal b/hoauth2-demo/hoauth2-demo.cabal index 49ad71b..5c82f6f 100644 --- a/hoauth2-demo/hoauth2-demo.cabal +++ b/hoauth2-demo/hoauth2-demo.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: hoauth2-demo -version: 1.6.1 +version: 1.7.0 synopsis: hoauth2 demo application description: Demo application to test oauth2 flow with many providers using hoauth2 @@ -67,8 +67,8 @@ executable hoauth2-demo , containers ^>=0.6 , data-default ^>=0.7 , directory ^>=1.3 - , hoauth2 >=2.7 && <2.9 - , hoauth2-providers >=0.2 && <0.3 + , hoauth2 ^>=2.9 + , hoauth2-providers ^>=0.3 , http-conduit >=2.1 && <2.4 , http-types >=0.11 && <0.13 , jose-jwt >=0.9.4 && <0.10 diff --git a/hoauth2-providers-tutorial/hoauth2-providers-tutorial.cabal b/hoauth2-providers-tutorial/hoauth2-providers-tutorial.cabal index 143365f..3808a3f 100644 --- a/hoauth2-providers-tutorial/hoauth2-providers-tutorial.cabal +++ b/hoauth2-providers-tutorial/hoauth2-providers-tutorial.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: hoauth2-providers-tutorial -version: 0.2.1 +version: 0.3.0 synopsis: tutorial for hoauth2-providers module description: A tutorial that demostrates how to use hoauth2-providers package @@ -19,8 +19,8 @@ library , base >=4.14 && <5 , bytestring >=0.9 && <0.12 , containers ^>=0.6 - , hoauth2 >=2.7 && <2.9 - , hoauth2-providers >=0.2 && <0.3 + , hoauth2 ^>=2.9 + , hoauth2-providers ^>=0.3 , http-conduit >=2.1 && <2.4 , http-types >=0.11 && <0.13 , scotty >=0.10.0 && <0.13 diff --git a/hoauth2-providers/hoauth2-providers.cabal b/hoauth2-providers/hoauth2-providers.cabal index 71ad813..b8bde47 100644 --- a/hoauth2-providers/hoauth2-providers.cabal +++ b/hoauth2-providers/hoauth2-providers.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: hoauth2-providers -version: 0.2.1 +version: 0.3.0 synopsis: OAuth2 Identity Providers description: A few well known Identity Providers homepage: https://github.com/freizl/hoauth2 @@ -58,7 +58,7 @@ library , bytestring >=0.9 && <0.12 , containers ^>=0.6 , cryptonite >=0.30 && <0.31 - , hoauth2 >=2.7 && <2.9 + , hoauth2 ^>=2.9 , HsOpenSSL >=0.11 && <0.12 , http-conduit >=2.1 && <2.4 , http-types >=0.11 && <0.13 diff --git a/hoauth2-tutorial/hoauth2-tutorial.cabal b/hoauth2-tutorial/hoauth2-tutorial.cabal index 981b083..f036e00 100644 --- a/hoauth2-tutorial/hoauth2-tutorial.cabal +++ b/hoauth2-tutorial/hoauth2-tutorial.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: hoauth2-tutorial -version: 0.2.1 +version: 0.3.0 synopsis: Tutorial for using hoauth2 description: Tutorial to demostrate how to use hoauth2 to implement OAuth2 flow in an web Application. @@ -26,7 +26,7 @@ common common , aeson >=2.0 && <2.2 , base >=4.5 && <5 , bytestring >=0.9 && <0.12 - , hoauth2 >=2.7 && <2.9 + , hoauth2 ^>=2.9 , http-conduit >=2.1 && <2.4 , http-types >=0.11 && <0.13 , scotty >=0.10 && <0.13 diff --git a/hoauth2/hoauth2.cabal b/hoauth2/hoauth2.cabal index 3457ff4..4d504d3 100644 --- a/hoauth2/hoauth2.cabal +++ b/hoauth2/hoauth2.cabal @@ -2,7 +2,7 @@ cabal-version: 2.4 name: hoauth2 -- http://wiki.haskell.org/Package_versioning_policy -version: 2.8.1 +version: 2.9.0 synopsis: Haskell OAuth2 authentication client description: This is Haskell binding of OAuth2 Authorization framework and Bearer Token Usage framework.