packages feed

citeproc 0.3.0.4 → 0.3.0.5

raw patch · 3 files changed

+10/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,10 @@ # citeproc changelog +## 0.3.0.5++  * Add a space between "no date" term and disambiguator+    if the long form is used (#47).+ ## 0.3.0.4    * Improve disambiguation code.  Add type signatures,
citeproc.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                citeproc-version:             0.3.0.4+version:             0.3.0.5 synopsis:            Generates citations and bibliography from CSL styles. description:         citeproc parses CSL style files and uses them to                      generate a list of formatted citations and bibliography
src/Citeproc/Eval.hs view
@@ -1475,7 +1475,10 @@               mbsuff <- getYearSuffix               case mbsuff of                 Nothing  -> return t'-                Just suff -> return $ grouped [t', suff]+                Just suff+                  | termForm term == Long+                    -> return $ grouped [t', Literal (fromText " "), suff]+                  | otherwise -> return $ grouped [t', suff]             else return t'   return $ Tagged TagTerm t''