json_expressions 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ ### v0.7.2 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.7.1...0.7.2)
2
+
3
+ * Bugfix: Corrected a misbehaving require statement in minitest helpers (Fixes #2)
4
+
5
+ ### v0.7.1 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.7.0...0.7.1)
6
+
7
+ * Bugfix: Correctly matching `false` inside a symbol-keyed hash (Fixes #1)
8
+
9
+ ### v0.7.0 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.6.0...0.7.0)
10
+
11
+ * BREAKING: Removed support for Object#match in favor of Object#===
12
+ * BREAKING: Removed configuration option JsonExpressions::Matcher.skip_match_on
13
+
14
+ ### v0.6.0 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.5.0...0.6.0)
15
+
16
+ * Added non-bang version of `strict`, `forgiving`, `ordered` and `unordered`
17
+ * Added RSpec support (thanks @bobthecow for the [initial implementation](https://gist.github.com/3086558))
18
+ * Added support for `Symobl` hash keys
19
+ * Switched examples in README to use `Symbol` hash keys
20
+ * Improved error messages
21
+
22
+ ### v0.5.0
23
+
24
+ * Initial release
@@ -1,4 +1,4 @@
1
- require 'minitest'
1
+ require 'minitest/unit'
2
2
  require 'json_expressions'
3
3
  require 'json_expressions/minitest/unit/helpers'
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_expressions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -27,6 +27,7 @@ files:
27
27
  - lib/json_expressions/rspec.rb
28
28
  - lib/json_expressions.rb
29
29
  - README.md
30
+ - CHANGELOG.md
30
31
  - LICENSE
31
32
  homepage: https://github.com/chancancode/json_expressions
32
33
  licenses: []