Actually export the new options (#1825)
* actually export the new options * bump version number, update changelog
This commit is contained in:
parent
22c5e46d5c
commit
b24028200c
@ -1,5 +1,9 @@
|
|||||||
# ChangeLog for yesod-core
|
# ChangeLog for yesod-core
|
||||||
|
|
||||||
|
## 1.6.25.1
|
||||||
|
|
||||||
|
* Export the options that were created in 1.6.25.0 [#1825](https://github.com/yesodweb/yesod/pull/1825)
|
||||||
|
|
||||||
## 1.6.25.0
|
## 1.6.25.0
|
||||||
|
|
||||||
* Add an options structure that allows the user to set which instances will be derived for a routes structure. [#1819](https://github.com/yesodweb/yesod/pull/1819)
|
* Add an options structure that allows the user to set which instances will be derived for a routes structure. [#1819](https://github.com/yesodweb/yesod/pull/1819)
|
||||||
|
|||||||
@ -10,12 +10,22 @@ module Yesod.Core.Dispatch
|
|||||||
, parseRoutesFile
|
, parseRoutesFile
|
||||||
, parseRoutesFileNoCheck
|
, parseRoutesFileNoCheck
|
||||||
, mkYesod
|
, mkYesod
|
||||||
|
, mkYesodOpts
|
||||||
, mkYesodWith
|
, mkYesodWith
|
||||||
-- ** More fine-grained
|
-- ** More fine-grained
|
||||||
, mkYesodData
|
, mkYesodData
|
||||||
|
, mkYesodDataOpts
|
||||||
, mkYesodSubData
|
, mkYesodSubData
|
||||||
|
, mkYesodSubDataOpts
|
||||||
, mkYesodDispatch
|
, mkYesodDispatch
|
||||||
|
, mkYesodDispatchOpts
|
||||||
, mkYesodSubDispatch
|
, mkYesodSubDispatch
|
||||||
|
-- *** Route generation options
|
||||||
|
, RouteOpts
|
||||||
|
, defaultOpts
|
||||||
|
, setEqDerived
|
||||||
|
, setShowDerived
|
||||||
|
, setReadDerived
|
||||||
-- *** Helpers
|
-- *** Helpers
|
||||||
, defaultGen
|
, defaultGen
|
||||||
, getGetMaxExpires
|
, getGetMaxExpires
|
||||||
|
|||||||
@ -35,6 +35,12 @@ module Yesod.Core.Internal.TH
|
|||||||
|
|
||||||
, subTopDispatch
|
, subTopDispatch
|
||||||
, instanceD
|
, instanceD
|
||||||
|
|
||||||
|
, RouteOpts
|
||||||
|
, defaultOpts
|
||||||
|
, setEqDerived
|
||||||
|
, setShowDerived
|
||||||
|
, setReadDerived
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: yesod-core
|
name: yesod-core
|
||||||
version: 1.6.25.0
|
version: 1.6.25.1
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Michael Snoyman <michael@snoyman.com>
|
author: Michael Snoyman <michael@snoyman.com>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user