change_health 0.6.0 → 0.7.0

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
  SHA256:
3
- metadata.gz: 3c97fc88c9f0def70b9e941ed35e59bd956f5d839597b8226163d91b7ced371a
4
- data.tar.gz: 66cd4522fd779c6ad635e617b10ee988a52d97e95024bef6c6e804866582bfd0
3
+ metadata.gz: bdc3db789f5792e202e57cac60ca245077fab8659605c09eccc8dd5fe90b1c56
4
+ data.tar.gz: 3768e68f35d7b4cda231e4dd0ebecb6ab0b318b727c9c84ea7a21fdd7b48152e
5
5
  SHA512:
6
- metadata.gz: c4787b8fc7b4108607f25412724bf9169dbf5feb19033fed1b128d99953389be1cbc74cb3b0ea24d548b3d1c09b95b66bdb26f37d8157037785b98bd877c7e40
7
- data.tar.gz: 714bb74a58c6e34b188c8882d89cd6ac611998c68eccc94fd8c8c85c91ce6cac1786c61b0f0b3a091c133597bdef94772f4ca8665dd9fff655e8b538295b0875
6
+ metadata.gz: 8b0a05cc4e1499e369167d8eb10602089943eac19acc5a790da0703445de3648bca2c06da5d672eaae3f34262b0663422ed6543c1fc578e725eeec5cbd9cce3b
7
+ data.tar.gz: f7a91483da97c145a89e0ccba01fafc3efe490e31dc4f429a5bafc268c7f37aadb626518152610d4f454cefad8284ac2885f9ed1d7bc20539722dbce34c6a856
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.7.0] - [2020-04-03]
8
+ ### Changed
9
+ - Fixed bug in serializing date on subscriber and encounter
10
+
7
11
  ## [0.6.0] - [2020-04-02]
8
12
  ### Changed
9
13
  - Added Indifferent Access to hashes
@@ -49,6 +53,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
49
53
  - Authentication
50
54
  - Configuration
51
55
 
56
+ [0.7.0]: https://github.com/WeInfuse/change_health/compare/v0.6.0...v0.7.0
52
57
  [0.6.0]: https://github.com/WeInfuse/change_health/compare/v0.5.0...v0.6.0
53
58
  [0.5.0]: https://github.com/WeInfuse/change_health/compare/v0.4.0...v0.5.0
54
59
  [0.4.0]: https://github.com/WeInfuse/change_health/compare/v0.3.0...v0.4.0
@@ -31,6 +31,10 @@ module ChangeHealth
31
31
  def as_json(args = {})
32
32
  self.to_h
33
33
  end
34
+
35
+ def to_json
36
+ self.to_h.to_json
37
+ end
34
38
  end
35
39
  end
36
40
  end
@@ -38,6 +38,10 @@ module ChangeHealth
38
38
  def as_json(args = {})
39
39
  self.to_h
40
40
  end
41
+
42
+ def to_json
43
+ self.to_h.to_json
44
+ end
41
45
  end
42
46
  end
43
47
  end
@@ -1,3 +1,3 @@
1
1
  module ChangeHealth
2
- VERSION = '0.6.0'.freeze
2
+ VERSION = '0.7.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett