aboutsummaryrefslogtreecommitdiffstats
path: root/History.txt
diff options
context:
space:
mode:
Diffstat (limited to 'History.txt')
-rw-r--r--History.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/History.txt b/History.txt
index fa08015903..d3172f4162 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,29 @@
+== 2.1.0 (unreleased)
+
+* Enhancements
+
+ * AST is now Enumerable
+
+* Deprecations
+
+ * Calls to `insert` are deprecated. Please use `compile_insert` then call
+ `to_sql` on the resulting object and execute that SQL.
+
+ * Calls to `update` are deprecated. Please use `compile_update` then call
+ `to_sql` on the resulting object and execute that SQL.
+
+ * Calls to `delete` are deprecated. Please use `compile_delete` then call
+ `to_sql` on the resulting object and execute that SQL.
+
+ * Arel::Table#joins is deprecated and will be removed in 3.0.0 with no
+ replacement.
+
+ * Arel::Table#columns is deprecated and will be removed in 3.0.0 with no
+ replacement.
+
+ * Arel::Table.table_cache is deprecated and will be removed in 3.0.0 with no
+ replacement.
+
== 2.0.6 12/01/2010
* Bug Fixes