I'm having quite some unpleasant moments every time I build my LaTeX documents using Sublime Text 3. Every time I compile a document I get the following warning
LaTeX Warning: You have requested, on input line 37, version
2018/01/30' of package pdftexcmds, but only version2018/01/21 v0.26 Utility functions of pdfTeX for LuaTeX (HO)' is available.
(Yes. pdftexcmds)
The weird part is that this happens even when I have nothing in line 37. AND, when I manually go to the command pallete and select Build with: Latex- Basic Builder Xelatex: the code runs and prints the references as expected (I still get a warning though).
How to avoid this warning in the future? What is the incompatibility between Xelatex and BibLaTeX? What is this warning about? I have no clue how to solve this.
The toy code is:
\documentclass[11pt]{article}
\usepackage[english]{babel}
\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX}
\usepackage[a4paper,margin=55pt]{geometry}
\usepackage[style=authoryear,sorting=nyt,backend=biber]{biblatex}
\addbibresource{D:/Thesis/ref_thesis.bib}
\begin{document}
Hallo Friends, it happens that \parencite{hausman1} said X but \parencite{athey} said Y.
\printbibliography
\end{document}

