citeproc 0.3.0.2 → 0.3.0.3
raw patch · 4 files changed
+8/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- citeproc.cabal +1/−1
- man/citeproc.1 +1/−1
- src/Citeproc/Eval.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,10 @@ # citeproc changelog +## 0.3.0.3++ * Fix author-only citations (#43). We got bad results with some+ styles when a reference had both an author and a translator.+ ## 0.3.0.2 * Don't use cite-group delimiter if ANY citation in group has
citeproc.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: citeproc-version: 0.3.0.2+version: 0.3.0.3 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
man/citeproc.1 view
@@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 2.11.3.1 .\"-.TH "citeproc" "1" "" "citeproc 0.3.0.2" ""+.TH "citeproc" "1" "" "citeproc 0.3.0.3" "" .hy .SH NAME .PP
src/Citeproc/Eval.hs view
@@ -1040,7 +1040,7 @@ (citationItemId item)) x) . formatted mempty . (if citationItemType item == AuthorOnly- then map getAuthors+ then (:[]) . getAuthors . formatted mempty else id) . (case citationItemPrefix item of Just t | isNote