Version bumps and changelog updates

This commit is contained in:
Michael Snoyman 2018-01-15 15:57:36 +02:00
parent 89be12c147
commit 25acc5799b
No known key found for this signature in database
GPG Key ID: A048E8C057E86876
27 changed files with 89 additions and 42 deletions

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.4.2 ## 1.4.2
* Fix warnings * Fix warnings

View File

@ -1,5 +1,5 @@
name: yesod-auth-oauth name: yesod-auth-oauth
version: 1.4.2 version: 1.6.0
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Hiromi Ishii author: Hiromi Ishii
@ -23,12 +23,11 @@ library
build-depends: base >= 4 && < 4.3 build-depends: base >= 4 && < 4.3
build-depends: authenticate-oauth >= 1.5 && < 1.7 build-depends: authenticate-oauth >= 1.5 && < 1.7
, bytestring >= 0.9.1.4 , bytestring >= 0.9.1.4
, yesod-core >= 1.4 && < 1.5 , yesod-core >= 1.6 && < 1.7
, yesod-auth >= 1.4 && < 1.5 , yesod-auth >= 1.6 && < 1.7
, text >= 0.7 , text >= 0.7
, yesod-form >= 1.4 && < 1.5 , yesod-form >= 1.6 && < 1.7
, transformers >= 0.2.2 && < 0.6 , transformers >= 0.2.2 && < 0.6
, lifted-base >= 0.2 && < 0.3
exposed-modules: Yesod.Auth.OAuth exposed-modules: Yesod.Auth.OAuth
ghc-options: -Wall ghc-options: -Wall

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.4.21 ## 1.4.21
* Add redirectToCurrent to Yesod.Auth module for controlling setUltDestCurrent in redirectLogin [#1461](https://github.com/yesodweb/yesod/pull/1461) * Add redirectToCurrent to Yesod.Auth module for controlling setUltDestCurrent in redirectLogin [#1461](https://github.com/yesodweb/yesod/pull/1461)

View File

@ -1,5 +1,5 @@
name: yesod-auth name: yesod-auth
version: 1.4.21 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin author: Michael Snoyman, Patrick Brisbin
@ -23,7 +23,7 @@ library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, authenticate >= 1.3 , authenticate >= 1.3
, bytestring >= 0.9.1.4 , bytestring >= 0.9.1.4
, yesod-core >= 1.4.31 && < 1.5 , yesod-core >= 1.6 && < 1.7
, wai >= 1.4 , wai >= 1.4
, template-haskell , template-haskell
, base16-bytestring , base16-bytestring
@ -32,11 +32,11 @@ library
, random >= 1.0.0.2 , random >= 1.0.0.2
, text >= 0.7 , text >= 0.7
, mime-mail >= 0.3 , mime-mail >= 0.3
, yesod-persistent >= 1.4 , yesod-persistent >= 1.6
, shakespeare , shakespeare
, containers , containers
, unordered-containers , unordered-containers
, yesod-form >= 1.4 && < 1.5 , yesod-form >= 1.6 && < 1.7
, transformers >= 0.2.2 , transformers >= 0.2.2
, persistent >= 2.1 && < 2.8 , persistent >= 2.1 && < 2.8
, persistent-template >= 2.1 && < 2.8 , persistent-template >= 2.1 && < 2.8

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to conduit 1.3.0
## 1.5.3 ## 1.5.3
* Support typed-process-0.2.0.0 * Support typed-process-0.2.0.0

View File

@ -1,5 +1,5 @@
name: yesod-bin name: yesod-bin
version: 1.5.3 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -52,7 +52,6 @@ executable yesod
, conduit-extra >= 1.3 , conduit-extra >= 1.3
, resourcet >= 1.2 , resourcet >= 1.2
, base64-bytestring , base64-bytestring
, lifted-base
, http-reverse-proxy >= 0.4 , http-reverse-proxy >= 0.4
, network >= 2.5 , network >= 2.5
, http-client-tls , http-client-tls

View File

@ -1,9 +1,14 @@
## 1.4.38 ## 1.6.0
* Upgrade to conduit 1.3.0
* Switch to `MonadUnliftIO`
* Drop `mwc-random` and `blaze-builder` dependencies
* Strictify some internal data structures
* Add `CI` wrapper to first field in `Header` data constructor
[#1418](https://github.com/yesodweb/yesod/issues/1418)
* Internal only change, users of stable API are unaffected: `WidgetT` * Internal only change, users of stable API are unaffected: `WidgetT`
holds its data in an `IORef` so that it is isomorphic to `ReaderT`, holds its data in an `IORef` so that it is isomorphic to `ReaderT`,
avoiding state-loss issues.. avoiding state-loss issues..
* Instances for `MonadUnliftIO`
## 1.4.37.2 ## 1.4.37.2

View File

@ -325,7 +325,7 @@ data Header =
AddCookie !SetCookie AddCookie !SetCookie
| DeleteCookie !ByteString !ByteString | DeleteCookie !ByteString !ByteString
-- ^ name and path -- ^ name and path
| Header !ByteString !ByteString | Header !(CI ByteString) !ByteString
-- ^ key and value -- ^ key and value
deriving (Eq, Show) deriving (Eq, Show)

View File

@ -1,5 +1,5 @@
name: yesod-core name: yesod-core
version: 1.4.38 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.4.1 ## 1.4.1
* Fix warnings * Fix warnings

View File

@ -1,5 +1,5 @@
name: yesod-eventsource name: yesod-eventsource
version: 1.4.1 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Felipe Lessa <felipe.lessa@gmail.com> author: Felipe Lessa <felipe.lessa@gmail.com>
@ -15,7 +15,7 @@ extra-source-files: README.md ChangeLog.md
library library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, yesod-core == 1.4.* , yesod-core == 1.6.*
, conduit >= 1.3 , conduit >= 1.3
, wai >= 1.3 , wai >= 1.3
, wai-eventsource >= 1.3 , wai-eventsource >= 1.3

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.4.16 ## 1.4.16
* Korean translation * Korean translation

View File

@ -1,5 +1,5 @@
name: yesod-form name: yesod-form
version: 1.4.16 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -20,8 +20,8 @@ flag network-uri
library library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, yesod-core >= 1.4.14 && < 1.5 , yesod-core >= 1.6 && < 1.7
, yesod-persistent >= 1.4 && < 1.5 , yesod-persistent >= 1.6 && < 1.7
, time >= 1.1.4 , time >= 1.1.4
, shakespeare >= 2.0 , shakespeare >= 2.0
, persistent , persistent

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## 1.6.1
* Upgrade to yesod-core 1.6.0
## 1.6 ## 1.6
* Create new datatype `EntryEnclosure` for self-documentation of `feedEntryEnclosure`. * Create new datatype `EntryEnclosure` for self-documentation of `feedEntryEnclosure`.

View File

@ -1,5 +1,5 @@
name: yesod-newsfeed name: yesod-newsfeed
version: 1.6 version: 1.6.1.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman, Patrick Brisbin author: Michael Snoyman, Patrick Brisbin
@ -15,7 +15,7 @@ extra-source-files: README.md ChangeLog.md
library library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, yesod-core >= 1.4 && < 1.5 , yesod-core >= 1.6 && < 1.7
, time >= 1.1.4 , time >= 1.1.4
, shakespeare >= 2.0 , shakespeare >= 2.0
, bytestring >= 0.9.1.4 , bytestring >= 0.9.1.4

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.4.3 ## 1.4.3
* Fix overly powerful constraints on get404 and getBy404. * Fix overly powerful constraints on get404 and getBy404.

View File

@ -1,5 +1,5 @@
name: yesod-persistent name: yesod-persistent
version: 1.4.3 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -15,7 +15,7 @@ extra-source-files: README.md ChangeLog.md
library library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, yesod-core >= 1.4.0 && < 1.5 , yesod-core >= 1.6 && < 1.7
, persistent >= 2.1 && < 2.8 , persistent >= 2.1 && < 2.8
, persistent-template >= 2.1 && < 2.8 , persistent-template >= 2.1 && < 2.8
, transformers >= 0.2.2 , transformers >= 0.2.2

View File

@ -0,0 +1,3 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0

View File

@ -1,5 +1,5 @@
name: yesod-sitemap name: yesod-sitemap
version: 1.4.0.1 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -15,7 +15,7 @@ extra-source-files: README.md ChangeLog.md
library library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, yesod-core >= 1.4 && < 1.5 , yesod-core >= 1.6 && < 1.7
, time >= 1.1.4 , time >= 1.1.4
, xml-conduit >= 1.0 , xml-conduit >= 1.0
, text , text

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.5.3.1 ## 1.5.3.1
* Switch to cryptonite * Switch to cryptonite

View File

@ -1,5 +1,5 @@
name: yesod-static name: yesod-static
version: 1.5.3.1 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -29,7 +29,7 @@ library
build-depends: base >= 4 && < 5 build-depends: base >= 4 && < 5
, containers >= 0.2 , containers >= 0.2
, old-time >= 1.0 , old-time >= 1.0
, yesod-core >= 1.4 && < 1.5 , yesod-core >= 1.6 && < 1.7
, base64-bytestring >= 0.1.0.1 , base64-bytestring >= 0.1.0.1
, byteable >= 0.1 , byteable >= 0.1
, bytestring >= 0.9.1.4 , bytestring >= 0.9.1.4
@ -91,7 +91,7 @@ test-suite tests
YesodStaticTest YesodStaticTest
build-depends: base build-depends: base
, hspec >= 1.3 , hspec >= 1.3
, yesod-test >= 1.4 , yesod-test >= 1.6
, wai-extra , wai-extra
, HUnit , HUnit

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6.0
## 1.5.9.1 ## 1.5.9.1
* Fixes a Haddock syntax error in 1.5.9 [#1473](https://github.com/yesodweb/yesod/pull/1473) * Fixes a Haddock syntax error in 1.5.9 [#1473](https://github.com/yesodweb/yesod/pull/1473)

View File

@ -1,5 +1,5 @@
name: yesod-test name: yesod-test
version: 1.5.9.1 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Nubis <nubis@woobiz.com.ar> author: Nubis <nubis@woobiz.com.ar>
@ -27,7 +27,6 @@ library
, hspec-core == 2.* , hspec-core == 2.*
, html-conduit >= 0.1 , html-conduit >= 0.1
, http-types >= 0.7 , http-types >= 0.7
, monad-control
, network >= 2.2 , network >= 2.2
, persistent >= 1.0 , persistent >= 1.0
, pretty-show >= 1.6 , pretty-show >= 1.6
@ -38,7 +37,7 @@ library
, wai-extra , wai-extra
, xml-conduit >= 1.0 , xml-conduit >= 1.0
, xml-types >= 0.3 , xml-types >= 0.3
, yesod-core >= 1.4.14 , yesod-core >= 1.6
exposed-modules: Yesod.Test exposed-modules: Yesod.Test
Yesod.Test.CssQuery Yesod.Test.CssQuery
@ -58,10 +57,9 @@ test-suite test
, containers , containers
, html-conduit , html-conduit
, yesod-core , yesod-core
, yesod-form >= 1.4.14 , yesod-form >= 1.6
, text , text
, wai , wai
, lifted-base
, http-types , http-types
source-repository head source-repository head

View File

@ -1,3 +1,7 @@
## 0.3.0
* Upgrade to yesod-core 1.6
## 0.2.6 ## 0.2.6
* Fix warnings * Fix warnings

View File

@ -1,5 +1,5 @@
name: yesod-websockets name: yesod-websockets
version: 0.2.6 version: 0.3.0
synopsis: WebSockets support for Yesod synopsis: WebSockets support for Yesod
description: WebSockets support for Yesod description: WebSockets support for Yesod
homepage: https://github.com/yesodweb/yesod homepage: https://github.com/yesodweb/yesod
@ -23,9 +23,9 @@ library
, wai-websockets >= 2.1 , wai-websockets >= 2.1
, websockets >= 0.9 , websockets >= 0.9
, transformers >= 0.2 , transformers >= 0.2
, yesod-core >= 1.4 , yesod-core >= 1.6
, unliftio , unliftio
, conduit >= 1.0.15.1 , conduit >= 1.3
source-repository head source-repository head
type: git type: git

View File

@ -1,3 +1,7 @@
## 1.6.0
* Upgrade to yesod-core 1.6
## 1.4.5 ## 1.4.5
* Fix warnings * Fix warnings

View File

@ -1,5 +1,5 @@
name: yesod name: yesod
version: 1.4.5 version: 1.6.0
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com> author: Michael Snoyman <michael@snoyman.com>
@ -18,10 +18,9 @@ library
cpp-options: -DWINDOWS cpp-options: -DWINDOWS
build-depends: base >= 4.6 && < 5 build-depends: base >= 4.6 && < 5
, yesod-core >= 1.4 && < 1.5 , yesod-core >= 1.6 && < 1.7
, yesod-persistent >= 1.4 && < 1.5 , yesod-persistent >= 1.6 && < 1.7
, yesod-form >= 1.4 && < 1.5 , yesod-form >= 1.6 && < 1.7
, monad-control >= 0.3 && < 1.1
, transformers >= 0.2.2 , transformers >= 0.2.2
, wai >= 1.3 , wai >= 1.3
, wai-extra >= 1.3 , wai-extra >= 1.3