Version bumps for bounds
This commit is contained in:
parent
cf3d9db87d
commit
e064306ef3
@ -1,3 +1,9 @@
|
|||||||
|
# ChangeLog for yesod-auth-oauth
|
||||||
|
|
||||||
|
## 1.6.0.3
|
||||||
|
|
||||||
|
* Allow yesod-form 1.7
|
||||||
|
|
||||||
## 1.6.0.2
|
## 1.6.0.2
|
||||||
|
|
||||||
* Remove unnecessary deriving of Typeable
|
* Remove unnecessary deriving of Typeable
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
cabal-version: >= 1.10
|
cabal-version: >= 1.10
|
||||||
name: yesod-auth-oauth
|
name: yesod-auth-oauth
|
||||||
version: 1.6.0.2
|
version: 1.6.0.3
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Hiromi Ishii
|
author: Hiromi Ishii
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
# ChangeLog for yesod-auth
|
# ChangeLog for yesod-auth
|
||||||
|
|
||||||
|
## 1.6.10.3
|
||||||
|
|
||||||
|
* Relax bounds for yesod-form 1.7
|
||||||
|
|
||||||
## 1.6.10.2
|
## 1.6.10.2
|
||||||
|
|
||||||
* Relax bounds for persistent 2.12
|
* Relax bounds for persistent 2.12
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
name: yesod-auth
|
name: yesod-auth
|
||||||
version: 1.6.10.2
|
version: 1.6.10.3
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Michael Snoyman, Patrick Brisbin
|
author: Michael Snoyman, Patrick Brisbin
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.7.0.2
|
||||||
|
|
||||||
|
* Allow yesod-form 1.7
|
||||||
|
|
||||||
## 1.7.0.1
|
## 1.7.0.1
|
||||||
|
|
||||||
[#1716](https://github.com/yesodweb/yesod/pull/1716)
|
[#1716](https://github.com/yesodweb/yesod/pull/1716)
|
||||||
@ -23,4 +27,4 @@
|
|||||||
|
|
||||||
[#1601](https://github.com/yesodweb/yesod/pull/1601)
|
[#1601](https://github.com/yesodweb/yesod/pull/1601)
|
||||||
|
|
||||||
* Added `Yesod.Form.MultiInput` which supports multi-input forms without needing to submit the form to add an input field
|
* Added `Yesod.Form.MultiInput` which supports multi-input forms without needing to submit the form to add an input field
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: yesod-form-multi
|
name: yesod-form-multi
|
||||||
version: 1.7.0.1
|
version: 1.7.0.2
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: James Burton <jamesejburton@gmail.com>
|
author: James Burton <jamesejburton@gmail.com>
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
cabal-version: >= 1.10
|
||||||
name: yesod-form
|
name: yesod-form
|
||||||
version: 1.7.0
|
version: 1.7.0
|
||||||
license: MIT
|
license: MIT
|
||||||
@ -7,7 +8,6 @@ maintainer: Michael Snoyman <michael@snoyman.com>
|
|||||||
synopsis: Form handling support for Yesod Web Framework
|
synopsis: Form handling support for Yesod Web Framework
|
||||||
category: Web, Yesod
|
category: Web, Yesod
|
||||||
stability: Stable
|
stability: Stable
|
||||||
cabal-version: >= 1.8
|
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
homepage: http://www.yesodweb.com/
|
homepage: http://www.yesodweb.com/
|
||||||
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>. Third-party packages which you can find useful: <http://hackage.haskell.org/package/yesod-form-richtext yesod-form-richtext> - richtext form fields (currntly it provides only Summernote support).
|
description: API docs and the README are available at <http://www.stackage.org/package/yesod-form>. Third-party packages which you can find useful: <http://hackage.haskell.org/package/yesod-form-richtext yesod-form-richtext> - richtext form fields (currntly it provides only Summernote support).
|
||||||
@ -19,6 +19,7 @@ flag network-uri
|
|||||||
default: True
|
default: True
|
||||||
|
|
||||||
library
|
library
|
||||||
|
default-language: Haskell2010
|
||||||
build-depends: base >= 4.10 && < 5
|
build-depends: base >= 4.10 && < 5
|
||||||
, aeson
|
, aeson
|
||||||
, attoparsec >= 0.10
|
, attoparsec >= 0.10
|
||||||
@ -70,6 +71,7 @@ library
|
|||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
|
||||||
test-suite test
|
test-suite test
|
||||||
|
default-language: Haskell2010
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
main-is: main.hs
|
main-is: main.hs
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user