Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump up versions #247

Merged
merged 3 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hoauth2-demo/hoauth2-demo.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hoauth2-demo
version: 1.10.0
version: 1.11.0
synopsis: hoauth2 demo application
description:
Demo application to test oauth2 flow with many providers using hoauth2
Expand Down Expand Up @@ -67,8 +67,8 @@ executable hoauth2-demo
, containers >=0.6 && <0.8
, data-default ^>=0.7
, directory ^>=1.3
, hoauth2 >=2.9 && <2.13
, hoauth2-providers >=0.3 && <0.7
, hoauth2 >=2.9 && <2.14
, hoauth2-providers >=0.3 && <0.8
, http-conduit >=2.1 && <2.4
, http-types >=0.11 && <0.13
, jose-jwt >=0.10 && <0.11
Expand Down
6 changes: 3 additions & 3 deletions hoauth2-providers-tutorial/hoauth2-providers-tutorial.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hoauth2-providers-tutorial
version: 0.6.0
version: 0.7.0
synopsis: tutorial for hoauth2-providers module
description:
A tutorial that demostrates how to use hoauth2-providers package
Expand All @@ -19,8 +19,8 @@ library
, base >=4.11 && <5
, bytestring >=0.9 && <0.13
, containers >=0.6 && <0.8
, hoauth2 >=2.9 && <2.13
, hoauth2-providers >=0.3 && <0.7
, hoauth2 >=2.9 && <2.14
, hoauth2-providers >=0.3 && <0.8
, http-conduit >=2.1 && <2.4
, http-types >=0.11 && <0.13
, scotty >=0.10.0 && <0.13
Expand Down
6 changes: 3 additions & 3 deletions hoauth2-providers/hoauth2-providers.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hoauth2-providers
version: 0.6.0
version: 0.7.0
synopsis: OAuth2 Identity Providers
description: A few well known Identity Providers
homepage: https://github.com/freizl/hoauth2
Expand Down Expand Up @@ -57,8 +57,8 @@ library
, base >=4.11 && <5
, bytestring >=0.9 && <0.13
, containers ^>=0.6
, crypton ^>=0.32
, hoauth2 >=2.9 && <2.13
, crypton >=0.32 && <0.35
, hoauth2 >=2.9 && <2.14
, HsOpenSSL >=0.11 && <0.12
, http-conduit >=2.1 && <2.4
, http-types >=0.11 && <0.13
Expand Down
4 changes: 2 additions & 2 deletions hoauth2-tutorial/hoauth2-tutorial.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: hoauth2-tutorial
version: 0.6.0
version: 0.7.0
synopsis: Tutorial for using hoauth2
description:
Tutorial to demostrate how to use hoauth2 to implement OAuth2 flow in an web Application.
Expand All @@ -26,7 +26,7 @@ common common
, aeson >=2.0 && <2.3
, base >=4.11 && <5
, bytestring >=0.9 && <0.13
, hoauth2 >=2.9 && <2.13
, hoauth2 >=2.9 && <2.14
, http-conduit >=2.1 && <2.4
, http-types >=0.11 && <0.13
, scotty >=0.10 && <0.13
Expand Down
4 changes: 2 additions & 2 deletions hoauth2/hoauth2.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 2.4
name: hoauth2

-- http://wiki.haskell.org/Package_versioning_policy
version: 2.12.0
version: 2.13.0
synopsis: Haskell OAuth2 authentication client
description:
This is Haskell binding of OAuth2 Authorization framework and Bearer Token Usage framework.
Expand Down Expand Up @@ -70,7 +70,7 @@ library
, binary >=0.8 && <0.11
, bytestring >=0.9 && <0.13
, containers >=0.6 && <0.8
, crypton ^>=0.32
, crypton >=0.32 && <0.35
, data-default ^>=0.7
, exceptions >=0.8.3 && <0.11
, http-conduit >=2.1 && <2.4
Expand Down
Loading