aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--History.txt6
-rw-r--r--lib/arel.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index 6985da4f49..11ca9e8659 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,9 @@
+=== 9.0.0 / 2017-11-14
+
+* Enhancements
+ * `InsertManager#insert` is now chainable
+ * Support multiple inserts
+
=== 8.0.0 / 2017-02-21
* Enhancements
diff --git a/lib/arel.rb b/lib/arel.rb
index 80cc95985f..e7c6fc7fd3 100644
--- a/lib/arel.rb
+++ b/lib/arel.rb
@@ -24,7 +24,7 @@ require 'arel/delete_manager'
require 'arel/nodes'
module Arel
- VERSION = '9.0.0.alpha'
+ VERSION = '9.0.0'
def self.sql raw_sql
Arel::Nodes::SqlLiteral.new raw_sql