aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--History.txt4
-rw-r--r--lib/arel.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/History.txt b/History.txt
index 07cb9024fd..e302920c14 100644
--- a/History.txt
+++ b/History.txt
@@ -1,8 +1,10 @@
-=== 7.0.1 / unreleased
+=== 7.1.0 / 2016-07-19
* Enhancements
* Support Ruby 2.4 unified Integer class
+ * Implement `CASE` conditional expression
+ * Support for Bitwise Operations as `InfixOperations`
=== 7.0.0 / 2015-12-17
diff --git a/lib/arel.rb b/lib/arel.rb
index 2bd56372ef..c320f104d8 100644
--- a/lib/arel.rb
+++ b/lib/arel.rb
@@ -21,7 +21,7 @@ require 'arel/delete_manager'
require 'arel/nodes'
module Arel
- VERSION = '7.0.1.pre'
+ VERSION = '7.1.0'
def self.sql raw_sql
Arel::Nodes::SqlLiteral.new raw_sql