arel 7.1.0 → 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2342eabbd34e994cf145023635cfe2da0c06cdf1
4
- data.tar.gz: 044e71730354450e808cc454d89b8c362b2c8248
3
+ metadata.gz: 74721abc602f44a3b42651cf34127fbddd3c9c72
4
+ data.tar.gz: 709871d9dc2e30646a10a55e7ba4193a6ecccf1c
5
5
  SHA512:
6
- metadata.gz: 14fd92387019cbab3bd4a102d0bddf0de1870eb16308054c69488d5d33a7692250f8e4c833ee0b7c76079fb8ed77778e98c55dc3da5f74a9726c793312661cda
7
- data.tar.gz: ee5a6f43ddfae8c144f300fc7cb387bb0b836cb9cbbdbd8e1b597d22ed3493ee49a60656ac9ca1420bf9404a406d7a3ccd2fc5eda8281c03cb5ffb616654fe56
6
+ metadata.gz: be4afc1637d325ee7259e5f0af3f5fbfce02a92dbf8bfc5cac22e5b012e24c3b6d700aa1515b8e5b93f56014b0b5fa4ab950d1997ac1d91dab0639b2599a35a4
7
+ data.tar.gz: c1b9ee3bfeaf03b52aaad94d18a614c88532feb8f24cc282b8407cdc9d6b8f607329c40c32bfdbb8fad0c4d692ac63822a1d2f6ef922df6b2cfec5cf1ce16454
@@ -1,3 +1,9 @@
1
+ === 7.1.1 / 2016-07-27
2
+
3
+ * Bug Fixes
4
+
5
+ * Fix warning in `Casted#hash`
6
+
1
7
  === 7.1.0 / 2016-07-19
2
8
 
3
9
  * Enhancements
@@ -21,7 +21,7 @@ require 'arel/delete_manager'
21
21
  require 'arel/nodes'
22
22
 
23
23
  module Arel
24
- VERSION = '7.1.0'
24
+ VERSION = '7.1.1'
25
25
 
26
26
  def self.sql raw_sql
27
27
  Arel::Nodes::SqlLiteral.new raw_sql
@@ -11,7 +11,7 @@ module Arel
11
11
  def nil?; @val.nil?; end
12
12
 
13
13
  def hash
14
- [@class, @val, @attribute].hash
14
+ [self.class, val, attribute].hash
15
15
  end
16
16
 
17
17
  def eql? other
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arel
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Patterson
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-07-20 00:00:00.000000000 Z
14
+ date: 2016-07-27 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: minitest