I'm trying to use authoryear style and remove the parentheses around the year:
Authors...2018. Title...
instead of
Authors...(2018) Title...
in the bibliography. I am, however, not able to get it to work.
e.g.
biblatex: How to remove the parentheses around the year in authoryear style?
fails. biblatex-chicago also fails.
I found that in newer versions, the macro has to be changed adding a *. My new MWE would be
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\usepackage{xpatch}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\xpatchbibmacro{date+extrayear}{%
\printtext[parens]%
}{%
\setunit*{\addperiod\space}%
\printtext%
}{}{}
\printbibliography
\end{document}
which consequently fails too:
I tested pdflatex, lualatex on macOS and Windows. Packages are up to date. Can someone help?

.logfile). In that case I will immediately vote to reopen this question. – moewe Nov 08 '18 at 22:47