I tried to use the automatic uncover option (beamer user guide, section 23.1) as follows:
% file test.tex
\begin{document}
This is a test.
\begin{frame}
\begin{itemize}[<+->]
\item First
\item Second
\end{itemize}
\end{frame}
% file test.beamer.tex to produce the actual presentation; works as expected.
\documentclass[ignorenonframetext]{beamer}
\input{test.tex}
% file test.article.tex
\documentclass{article}
\usepackage{beamerarticle}
\setjobnamebeamerversion{test8.beamer}
\input{test8.tex}
\end{document}
which gives the following error:
! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.6 \item F
irst
The actual presentation has a lot of lists of items, making the automatic uncovering most desirable. Any suggestion would be greatly appreciated.

beamerdo you have? – Joseph Wright♦ Dec 14 '11 at 19:05texdoc beamer: the first page should have a line reading 'User Guide for version 3. x ', where the x is what is what I'm after. – Joseph Wright♦ Dec 14 '11 at 19:22