zaikio-warehouse 0.6.0 → 0.6.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: ac5343b7ea219fe1f866ecb0bdb71a5cc09339443a5838d5c3445efab99585d1
4
- data.tar.gz: c6f134a7c3b88c08857831f63ad8d1747e57ff38bff857aa5692273d3c6ce1d4
3
+ metadata.gz: 2590f6ed77b0a915a6f39139c9ef5db68f9e0689a495a22f56345cceb774d198
4
+ data.tar.gz: 9fd1d968a29ffa13fbde63946adedcf6362adf27f8ffd09d4a054b504f6cb9f0
5
5
  SHA512:
6
- metadata.gz: be1a0622b2a4bf71f9492d305bb53477538d907113b151281a5022d1210038252b46a7030e87e25641046017420634090de115af726a42318222b4c38948c058
7
- data.tar.gz: 5b0e00c7e68b7a07e935e3231d5f805141b746e9e65dccccd3abe483503857bfc09a3450f2da7ee3ce245d752c39fa5be5462af388058bb38f65b220838e4a1b
6
+ metadata.gz: f3717a605c524eaf2768a9c893bae690b170f481c7841b28a0bd6427557392a1e258188b4196d47fcd542ac241a783b84d20cf40b3838fe7cc4b7395fb549be9
7
+ data.tar.gz: 8869c76c6b1976f9fc671514f50ca21c864b95960b39a7ce82733054d802a87daf1fc205581a78e669859920ed25dff6abf6bd40a39e5be36da1a9a9654022c4
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.6.1] - 2023-11-23
11
+
12
+ - Add `ready_for_consumption_at` to worksteps and material requirements
13
+
10
14
  ## [0.6.0] - 2023-11-15
11
15
 
12
16
  - Support creation of nested material requirement operations
@@ -64,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
64
68
  - Update and reuse `zaikio-client-helpers` logic to support `Zaikio::Client.with_token`
65
69
  - Initial release
66
70
 
67
- [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.0..HEAD
71
+ [Unreleased]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.1..HEAD
72
+ [0.6.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.6.0..v0.6.1
68
73
  [0.6.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.1..v0.6.0
69
74
  [0.5.1]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.5.0..v0.5.1
70
75
  [0.5.0]: https://github.com/zaikio/zaikio-warehouse-ruby/compare/v0.4.0..v0.5.0
@@ -10,7 +10,7 @@ module Zaikio
10
10
  attributes :created_at, :updated_at, :reference, :reference_link,
11
11
  :estimated_amount_in_base_unit, :planned_amount_in_base_unit,
12
12
  :actual_amount_in_base_unit, :allocation_mode, :allocated_at,
13
- :completed_at
13
+ :completed_at, :ready_for_consumption_at
14
14
 
15
15
  has_one :operator, uri: nil, class_name: "Zaikio::Warehouse::Organization"
16
16
  has_one :warehouse, uri: nil, class_name: "Zaikio::Warehouse::Warehouse"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Zaikio
4
4
  module Warehouse
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.1"
6
6
  end
7
7
  end
@@ -10,7 +10,8 @@ module Zaikio
10
10
 
11
11
  attributes :created_at, :updated_at, :name, :phase, :reference,
12
12
  :reference_link, :job_title, :job_reference, :job_reference_link,
13
- :starting_at, :due_at, :allocated_at, :completed_at
13
+ :starting_at, :due_at, :allocated_at, :completed_at,
14
+ :ready_for_consumption_at
14
15
 
15
16
  has_one :operator, uri: nil, class_name: "Zaikio::Warehouse::Organization"
16
17
  has_one :warehouse, uri: nil, class_name: "Zaikio::Warehouse::Warehouse"
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.6.0
4
+ version: 0.6.1
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-11-15 00:00:00.000000000 Z
12
+ date: 2023-11-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport