I can disable reference sorting globally using the nosort or the compress package options, that's described in the docs. The same chapter explains how to disable compression for one instance of \cref. But it doesn't mention how to disable sorting for one instance.
MWE:
\documentclass[12pt,a4paper]{article}
\usepackage{cleveref}
\begin{document}
\section{Foo}
\label{sec:foo}
\subsection{Bar}
\label{sec:foo.bar}
\section{Refs}
Check \cref{sec:foo.bar,sec:foo}
\end{document}
Output is "See sections 1 and 1.1", but I would like "See sections 1.1 and 1".

\crefnosortin a caption. So I missed to include that in my MWE. Should I add that to my MWE? – Elrond Jun 25 '13 at 18:32\newcommandinto\DeclareRobustCommandor use\protect\crefnosortin a caption. – egreg Jun 25 '13 at 19:34