Actually export the new options (#1825)

* actually export the new options

* bump version number, update changelog
This commit is contained in:
Benjamin-McRae-Tracsis 2023-11-28 22:04:23 +00:00 committed by GitHub
parent 22c5e46d5c
commit b24028200c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# 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
* 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)

View File

@ -10,12 +10,22 @@ module Yesod.Core.Dispatch
, parseRoutesFile
, parseRoutesFileNoCheck
, mkYesod
, mkYesodOpts
, mkYesodWith
-- ** More fine-grained
, mkYesodData
, mkYesodDataOpts
, mkYesodSubData
, mkYesodSubDataOpts
, mkYesodDispatch
, mkYesodDispatchOpts
, mkYesodSubDispatch
-- *** Route generation options
, RouteOpts
, defaultOpts
, setEqDerived
, setShowDerived
, setReadDerived
-- *** Helpers
, defaultGen
, getGetMaxExpires

View File

@ -35,6 +35,12 @@ module Yesod.Core.Internal.TH
, subTopDispatch
, instanceD
, RouteOpts
, defaultOpts
, setEqDerived
, setShowDerived
, setReadDerived
)
where

View File

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