Since installing the latest version of ggplot2 (0.9.1), I have been getting messages from my old code including:
> warnings()
Warning messages:
1: \'opts\
From Winston's github wiki, the key changes are:
theme_xx()
functions changed to element_xx()
theme_segment()
incorporated into theme_line()
opts()
changed to theme()
opts(title = "mytitle")
changed to labs(title = "mytitle")
New features that make programming easier, e.g. ggtitle("mytitle")
does the same as #3
Here is a diff of some functions that I updated:
For many of these things, I'd start following the ggplot2-dev mailing list, and/or the packages github repository.
The reason you were not finding anything was simply because you had misspelled "deprecated".
For upgrading your code, see this transition guide or this one. My understanding is that deprecation is the first step in total removal, which would typically happen in the next "major" release. Since 0.9.2 just came out, I'd guess the next one is at least 6-8 months away, but that's just a guess.
It is possible to load different versions of a package.
(Minor point: the latest version is 0.9.2.1!)