zaikio-warehouse 0.2.4 → 0.2.5

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: c8e6cd14f506a06aa4f2f6dcfe43452144f0c2ece0063350f55f3c77589b30d8
4
- data.tar.gz: 85e0ec8568a905739541b005cd56cf394276eb8812ca06c09bc204f79983eeb9
3
+ metadata.gz: 41fe2c973a4b725693ae1444c33bd8c032e567add048b95793cb2d5d249f00bc
4
+ data.tar.gz: ab187be945c6c61c8dcf05558b3a6155559135cfddbd52512ec4e4f3c93fcab7
5
5
  SHA512:
6
- metadata.gz: bac9ee55ef8d820f8adf4154298ce96b9dbcd06164f92d6bea42c1a9b95da58167b42639566dc294dfde74d550a0d039f4eab809166b5a0f8e3b7c60d8209f01
7
- data.tar.gz: 94c2dfd23e36e72a6231ba1c75e449a171c0624388dd87e4beb677da5bb144ae2829560327b75c36c915f37b0af61bf3fdd55ac6a9647dd1126bdd8a51d2ffb6
6
+ metadata.gz: f76914a111b66d8988f6e9a6764ec4aea26cda28981527a80b6d5e0dd9e20a3c484b0dc84a524c0c4eb67fd22ff764051215d753e0e10c8a936f3082654d4b97
7
+ data.tar.gz: 11fdc9be8978c516529698580053e07bc625b059b06407e7132b4409b13f8295b33d774b1a507bd895baaa4d85401487e9f99c99a721ea3d30ce6ac26b3e0526
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.2.5] - 2023-06-26
11
+
12
+ - Fixed relative class names in `CallOff`
13
+
10
14
  ## [0.2.4] - 2023-03-27
11
15
 
12
16
  - Add `Material#merge(id)` method to support merging
@@ -38,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
38
42
  - Update and reuse `zaikio-client-helpers` logic to support `Zaikio::Client.with_token`
39
43
  - Initial release
40
44
 
41
- [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.4..HEAD
45
+ [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.5..HEAD
46
+ [0.2.5]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.4..v0.2.5
42
47
  [0.2.4]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.3..v0.2.4
43
48
  [0.2.3]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.2..v0.2.3
44
49
  [0.2.2]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.2.1..v0.2.2
@@ -44,10 +44,10 @@ module Zaikio
44
44
 
45
45
  attributes :state, :references, :delivery_date, :deletable, :created_at, :updated_at
46
46
 
47
- has_one :delivery_address, uri: nil, class_name: "Address"
47
+ has_one :delivery_address, uri: nil, class_name: "Zaikio::Warehouse::FinishedGoods::CallOff::Address"
48
48
  has_one :customer, uri: nil, class_name: "Zaikio::Warehouse::Contact"
49
49
  has_one :operator, uri: nil, class_name: "Zaikio::Warehouse::Organization"
50
- has_many :line_items, uri: nil, class_name: "LineItem"
50
+ has_many :line_items, uri: nil, class_name: "Zaikio::Warehouse::FinishedGoods::CallOff::LineItem"
51
51
  end
52
52
  end
53
53
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Zaikio
4
4
  module Warehouse
5
- VERSION = "0.2.4"
5
+ VERSION = "0.2.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zaikio-warehouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zaikio GmbH
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-03-27 00:00:00.000000000 Z
12
+ date: 2023-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport