tax_cloud 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55a0579c5212968283b84a2e6a87921e8d741d182e4f23337d480435c26dbec6
4
- data.tar.gz: 7cb858801bc88041e2b402962c5dc05d91afb6b52dc3fe793c4a943014b7d1bc
3
+ metadata.gz: 93176bbdc26f335664008acc9fc373b823e7d5797d6742aad450684a45ac975b
4
+ data.tar.gz: dc70ecb47b027054e9c212e82f5d70aac977a5589b5ed0b1c002bfc8d067fe97
5
5
  SHA512:
6
- metadata.gz: efc17316081884f02aebf3d1064e81df78515e5b8ee9355c224d8be53ef7529833648295c692ab332d35018092c940b2c21d2356450fa67761db7cd563b472ca
7
- data.tar.gz: b256cb07f74161ad04c869c258e75549fbed0920c2ce3a030e60a126518df9d32111df50afaba455b69682a31fc64f8cf30960b0c9e6c660da64f4b3c72fc994
6
+ metadata.gz: f9e77a29fed2c1ff6c98d3745f85e48d381b4f5262e6112ee9aeecca95e08fc01f23080649aae71ba77467a9837e82f898465dadc75a5bee8ad95898acc67c59
7
+ data.tar.gz: e1164fad86256f0b35e7b82dde9a54e4cc518613d92072c3e34073bfc1ac7fe452fa472b9d3cc5a81988a85f96d7427cdceaa6500678c6753dd8ad0dfc0b4ec3
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ### 0.5.0 (7/21/2023)
1
+ ### 0.6.0 (2023/12/15)
2
+
3
+ * Add Residential Delivery Indicator (rdi) to `TaxCloud::Address` on successful address verification - @nononoy.
4
+
5
+ ### 0.5.0 (2023/7/21)
2
6
 
3
7
  * Update README, CHANGELOG, and LICENSE from RDoc to Markdown -
4
8
  @brchristian.
@@ -8,7 +12,7 @@
8
12
  https://api.taxcloud.com/1.0/?wsdl - @mrmarcondes.
9
13
 
10
14
 
11
- ### 0.4.0 (12/7/2020)
15
+ ### 0.4.0 (2020/12/7)
12
16
 
13
17
  * Add `open_timeout` and `read_timeout` options into configuration -
14
18
  @ka8725.
@@ -26,25 +30,25 @@
26
30
  https://asmx.taxcloud.com/1.0/?wsdl - @brchristian.
27
31
 
28
32
 
29
- ### 0.3.0 (1/9/2014)
33
+ ### 0.3.0 (2014/1/9)
30
34
 
31
35
  * #19: Support Savon 2 - @drewtempelmeyer.
32
36
  * Implemented Rubocop, Ruby style linter - @dblock.
33
37
  * Ruby 1.8.7 and 1.9.2 are no longer supported - @dblock.
34
38
 
35
39
 
36
- ### 0.2.2 (4/29/2013)
40
+ ### 0.2.2 (2013/4/29)
37
41
 
38
42
  * Relaxed thirdparty gem dependency versions - @mperham.
39
43
 
40
44
 
41
- ### 0.2.1 (3/3/2013)
45
+ ### 0.2.1 (2013/3/3)
42
46
 
43
47
  * Fixed date formatting in API requests with localized applications -
44
48
  @soulcutter.
45
49
 
46
50
 
47
- ### 0.2.0 (11/26/2012)
51
+ ### 0.2.0 (2012/11/26)
48
52
 
49
53
  * The gem is now licensed under the MIT license - @dblock.
50
54
  * Raise specialized configuration and SOAP errors - @dblock.
@@ -61,25 +65,25 @@
61
65
  `TaxCloud::TaxCodes` and `TaxCloud::TaxCode::Groups` - @dblock.
62
66
 
63
67
 
64
- ### 0.1.5 (5/9/2012)
68
+ ### 0.1.5 (2012/5/9)
65
69
 
66
70
  * Fixed compatibility with Ruby 1.8.7 and 1.9.3, removed super from
67
71
  constructors for classes which inherit from `Object` - @gfmurphy.
68
72
 
69
73
 
70
- ### 0.1.4 (10/20/2011)
74
+ ### 0.1.4 (2011/10/20)
71
75
 
72
76
  * Upgraded rdoc - @drewtempelmeyer.
73
77
  * Fixed `.gemspec` dependency declaration for savon - @drewtempelmeyer.
74
78
 
75
79
 
76
- ### 0.1.3 (9/19/2011)
80
+ ### 0.1.3 (2011/9/19)
77
81
 
78
82
  * Added support for the "returned" request - @danielmorrison.
79
83
  * Refactoreted tests to use vcr and webmock - @danielmorrison.
80
84
 
81
85
 
82
- ### 0.1.0 (8/23/2011)
86
+ ### 0.1.0 (2011/8/23)
83
87
 
84
88
  * Initial public release - @drewtempelmeyer.
85
89
 
@@ -5,7 +5,7 @@ module TaxCloud #:nodoc:
5
5
  class Address < Record
6
6
  # First line of address.
7
7
  attr_accessor :address1
8
- # Second line of adress.
8
+ # Second line of address.
9
9
  attr_accessor :address2
10
10
  # City.
11
11
  attr_accessor :city
@@ -15,6 +15,8 @@ module TaxCloud #:nodoc:
15
15
  attr_accessor :zip5
16
16
  # 4-digit Zip Code.
17
17
  attr_accessor :zip4
18
+ # Residential delivery indicator
19
+ attr_accessor :rdi
18
20
 
19
21
  # Verify this address.
20
22
  #
@@ -2,5 +2,5 @@
2
2
 
3
3
  module TaxCloud #:nodoc:
4
4
  # The version of the <tt>tax_cloud</tt> gem.
5
- VERSION = '0.5.0'
5
+ VERSION = '0.6.0'
6
6
  end