zaikio-hub 0.4.0 → 0.4.1

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: 4a9640d7936210115f20948864594d3c7d27b27fb0258213c5a3d8733dde9491
4
- data.tar.gz: 249d78a7f720728047357dd321b721a46f010d6131b21269ed8dd7a81c53a1e2
3
+ metadata.gz: 4f6bfd7e6c71ab7f1e36f7e636b0669dcf412df73af3a4ea50e9b0ff65b70bd7
4
+ data.tar.gz: f5aa4039ff6e0a9d0474948445d8a41ac8219d607e5127f4a415b6b547908ceb
5
5
  SHA512:
6
- metadata.gz: cfc8d23635b8d32c18cf64994aa84be85ba9dc5041ce6eedf3f4904614dfd4444c5e8f60996b311182281cbadd5a975d6934f736a18d74263525722a6d13024e
7
- data.tar.gz: 6e64d3cbc98a528b6c475485a350f32fd1e0ff6a36cd7831955e45bf7a3bfdb418afaf73502aaef76cb1f0f6debe6bf70f68c06b2eb46cfa70d805061e73e46f
6
+ metadata.gz: ae95dd113b81078b5d8ebaec510682a1a0c256de6586f46a3cf4ca904128c94bcbe45ad14ffca2deed71b4a911ef5afe9944a83a2299a6fb352b63ac0eb52d55
7
+ data.tar.gz: d443851cf63f8829dfed8528c7cb4ba3fd2bc4e12492f6e530e4657a9c99d037c3402b66fb12add551d273ebe22882d8d50d5aab731f417cfb83ee40c322b1fb
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.1] - 2020-03-04
11
+
12
+ * Add `state` property for `Zaikio::Hub::Address` model
13
+
10
14
  ## [0.4.0] - 2020-02-23
11
15
 
12
16
  ### Changed
@@ -40,7 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
40
44
  ### Added
41
45
  - Added subscriptions (migration required)
42
46
 
43
- [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.4.0...HEAD
47
+ [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.4.1...HEAD
48
+ [0.4.1]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.4.0...v0.4.1
44
49
  [0.4.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.3.0...v0.4.0
45
50
  [0.3.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.2.0...v.0.3.0
46
51
  [0.2.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.1.1...v.0.2.0
@@ -2,8 +2,14 @@ module Zaikio
2
2
  module Hub
3
3
  class Address < Base
4
4
  # Attributes
5
- attributes :addressee, :text, :country_code, :town,
6
- :street_and_number, :zip_code, :addition
5
+ attributes :addressee,
6
+ :addition,
7
+ :country_code,
8
+ :state,
9
+ :street_and_number,
10
+ :text,
11
+ :town,
12
+ :zip_code
7
13
 
8
14
  # Associations
9
15
  belongs_to :site, uri: nil, class_name: "Zaikio::Hub::Site"
@@ -1,5 +1,5 @@
1
1
  module Zaikio
2
2
  module Hub
3
- VERSION = "0.4.0".freeze
3
+ VERSION = "0.4.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaikio-hub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - crispymtn
8
8
  - Jalyna Schröder
9
9
  - Martin Spickermann
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-02-23 00:00:00.000000000 Z
13
+ date: 2021-03-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: concurrent-ruby
@@ -84,16 +84,22 @@ dependencies:
84
84
  name: spyke
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: 5.3.4
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: 5.5.0
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
93
96
  requirements:
94
- - - "~>"
97
+ - - ">="
95
98
  - !ruby/object:Gem::Version
96
99
  version: 5.3.4
100
+ - - "<"
101
+ - !ruby/object:Gem::Version
102
+ version: 5.5.0
97
103
  description: Ruby API Client for Zaikio's Hub
98
104
  email:
99
105
  - op@crispymtn.com
@@ -139,7 +145,7 @@ licenses:
139
145
  - MIT
140
146
  metadata:
141
147
  changelog_uri: https://github.com/zaikio/zaikio-hub-ruby/blob/master/CHANGELOG.md
142
- post_install_message:
148
+ post_install_message:
143
149
  rdoc_options: []
144
150
  require_paths:
145
151
  - lib
@@ -154,8 +160,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
160
  - !ruby/object:Gem::Version
155
161
  version: '0'
156
162
  requirements: []
157
- rubygems_version: 3.1.4
158
- signing_key:
163
+ rubygems_version: 3.1.2
164
+ signing_key:
159
165
  specification_version: 4
160
166
  summary: Ruby API Client for Zaikio's Hub
161
167
  test_files: []