Skip to content

Commit

Permalink
Fix Haddock markup to render correctly (#327)
Browse files Browse the repository at this point in the history
* Fix awful garbage Haddock markup to render correctly

* Bump version to 3.5.8.2
  • Loading branch information
9999years authored Feb 15, 2023
1 parent 754b0b5 commit 02abed2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
3.5.8.2
=======
- @9999years
- [#327](https://github.com/bitemyapp/esqueleto/pull/327)
- Fixed a Haddock typo causing documentation to render incorrectly

3.5.8.1
=======
- @belevy
Expand Down
2 changes: 1 addition & 1 deletion esqueleto.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 1.12

name: esqueleto

version: 3.5.8.1
version: 3.5.8.2
synopsis: Type-safe EDSL for SQL queries on persistent backends.
description: @esqueleto@ is a bare bones, type-safe EDSL for SQL queries that works with unmodified @persistent@ SQL backends. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked @esqueleto@ queries that fail at runtime.
.
Expand Down
6 changes: 3 additions & 3 deletions src/Database/Esqueleto/Record.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ import Data.Maybe (mapMaybe, fromMaybe, listToMaybe)
-- with data extracted with esqueleto.
--
-- Note that because the input record and the @Sql@-prefixed record share field
-- names, the @{-# LANGUAGE DuplicateRecordFields #-}@ extension is required in
-- modules that use `deriveEsqueletoRecord`. Additionally, the @{-# LANGUAGE
-- TypeApplications #-}@ extension is required for some of the generated code.
-- names, the @{-\# LANGUAGE DuplicateRecordFields \#-}@ extension is required in
-- modules that use `deriveEsqueletoRecord`. Additionally, the @{-\# LANGUAGE
-- TypeApplications \#-}@ extension is required for some of the generated code.
--
-- Given the following record:
--
Expand Down

0 comments on commit 02abed2

Please sign in to comment.