zaikio-hub 0.16.0 → 0.17.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: a213b895dd1c0ecb399aafa3adec599fb7b1c149219b956486b459e3fd01e65e
4
- data.tar.gz: 23fa363c649c77f2a3768a71720f0b03368e6292d8c8975a28f2b4a906b6743b
3
+ metadata.gz: f893074c1bd1a277fb19b5cc8f1a3ef37aad7264178f3a97994533ebbdacba57
4
+ data.tar.gz: 41f0bd66b6e312eb9fef892dcaf0b79ffb592298f0594be7c308632c94bd5247
5
5
  SHA512:
6
- metadata.gz: 698c948206ee591211dea973a442c6fba4f343d7699798b0c7100db7ad37ca3a48a8aaa6ebc40f814709dabb1e6069b0140af02beee68bd5cfba22443fc5eed2
7
- data.tar.gz: 04d25a9c1639ac7cb07776f6137b323bfe0dc96b021cfd8ea2adc8d7871b3e0a6988bffb48bc007e402b810f7bdc1646343c5e95ecb586bbfdfd4a19d3a3492b
6
+ metadata.gz: 662e72746b5adc8c70d3e23115cfec025b3c0e6364079022602e788b8bacbd1513b86269dad818f58410d45288ab2ff4050691bdcf0e870c7613bd9ca1fc41ec
7
+ data.tar.gz: a508fc44552b52054eae17c72b35d9a568b9e0782470c22baec593e7e0e7324906b8bf02a154390cfeaefc4e1ec997ac8f83b19e0fab31650cde9fb9f37490fd
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.17.0]
11
+
12
+ - Add `reference` attribute to `Machine` and `Specialist`
13
+
10
14
  ## [0.16.0]
11
15
 
12
16
  - Support `availabilities` for `Machine` and `Specialist`
@@ -138,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
138
142
  ### Added
139
143
  - Added subscriptions (migration required)
140
144
 
141
- [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.16.0..HEAD
145
+ [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.17.0..HEAD
146
+ [0.17.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.16.0..v0.17.0
142
147
  [0.16.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.3..v0.16.0
143
148
  [0.15.3]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.2..v0.15.3
144
149
  [0.15.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.1..v0.15.2
@@ -8,7 +8,7 @@ module Zaikio
8
8
 
9
9
  # Attributes
10
10
  attributes :name, :updated_at, :created_at, :site_id, :kind, :capabilities,
11
- :manufacturer_id, :serial_number, :manufacturer, :owner_id
11
+ :manufacturer_id, :serial_number, :manufacturer, :owner_id, :reference
12
12
 
13
13
  # Associations
14
14
  has_many :availabilities, class_name: "Zaikio::Hub::Availability",
@@ -7,7 +7,8 @@ module Zaikio
7
7
  include_root_in_json :specialist
8
8
 
9
9
  # Attributes
10
- attributes :name, :updated_at, :created_at, :site_id, :kind, :owner_id, :capabilities
10
+ attributes :name, :updated_at, :created_at, :site_id, :kind, :owner_id,
11
+ :capabilities, :reference
11
12
 
12
13
  # Associations
13
14
  has_many :availabilities, class_name: "Zaikio::Hub::Availability",
@@ -1,5 +1,5 @@
1
1
  module Zaikio
2
2
  module Hub
3
- VERSION = "0.16.0".freeze
3
+ VERSION = "0.17.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaikio-hub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - crispymtn
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-04-28 00:00:00.000000000 Z
13
+ date: 2023-05-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: concurrent-ruby