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 +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/zaikio/warehouse/material_requirement.rb +1 -1
- data/lib/zaikio/warehouse/version.rb +1 -1
- data/lib/zaikio/warehouse/workstep.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2590f6ed77b0a915a6f39139c9ef5db68f9e0689a495a22f56345cceb774d198
|
4
|
+
data.tar.gz: 9fd1d968a29ffa13fbde63946adedcf6362adf27f8ffd09d4a054b504f6cb9f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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"
|
@@ -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.
|
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-
|
12
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|