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: