File tree 5 files changed +22
-11
lines changed
5 files changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.2.2] - 2020-09-18
11
+
12
+ ### Added
13
+
14
+ - ` photos ` field to ` projects `
15
+
16
+ ## [ 1.2.1] - 2020-09-18
17
+
18
+ ### Fixed
19
+
20
+ - Fixing an issue related to the OpenApi code generator.
21
+
10
22
## [ 1.2.0] - 2020-09-17
11
23
12
24
### Added
13
25
14
- - ` photos ` field to ` projects `
15
26
- ` average_price_per_tonne_cents_usd ` field to ` projects `
16
27
- ` remaining_mass_g ` field to ` projects `
17
28
- ` standard ` field to ` projects `
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- patch_ruby (1.2.0 )
4
+ patch_ruby (1.2.2 )
5
5
json (~> 2.1 , >= 2.1.0 )
6
6
typhoeus (~> 1.0 , >= 1.0.1 )
7
7
Original file line number Diff line number Diff line change 14
14
15
15
module Patch
16
16
class Photo
17
- attr_accessor :file
17
+ attr_accessor :url
18
18
19
19
# Attribute mapping from ruby-style variable name to JSON key.
20
20
def self . attribute_map
21
21
{
22
- :'file ' => :'file '
22
+ :'url ' => :'url '
23
23
}
24
24
end
25
25
26
26
# Attribute type mapping.
27
27
def self . openapi_types
28
28
{
29
- :'file ' => :'String'
29
+ :'url ' => :'String'
30
30
}
31
31
end
32
32
@@ -56,8 +56,8 @@ def initialize(attributes = {})
56
56
h [ k . to_sym ] = v
57
57
}
58
58
59
- if attributes . key? ( :'file ' )
60
- self . file = attributes [ :'file ' ]
59
+ if attributes . key? ( :'url ' )
60
+ self . url = attributes [ :'url ' ]
61
61
end
62
62
end
63
63
@@ -79,7 +79,7 @@ def valid?
79
79
def ==( o )
80
80
return true if self . equal? ( o )
81
81
self . class == o . class &&
82
- file == o . file
82
+ url == o . url
83
83
end
84
84
85
85
# @see the `==` method
@@ -91,7 +91,7 @@ def eql?(o)
91
91
# Calculates hash code according to all attributes.
92
92
# @return [Integer] Hash code
93
93
def hash
94
- [ file ] . hash
94
+ [ url ] . hash
95
95
end
96
96
97
97
# Builds the object from hash
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def self.openapi_types
88
88
:'photos' => :'Array<Photo>' ,
89
89
:'average_price_per_tonne_cents_usd' => :'Integer' ,
90
90
:'remaining_mass_g' => :'Integer' ,
91
- :'standard' => :'OneOfstandard '
91
+ :'standard' => :'Standard '
92
92
}
93
93
end
94
94
Original file line number Diff line number Diff line change 11
11
=end
12
12
13
13
module Patch
14
- VERSION = '1.2.0 '
14
+ VERSION = '1.2.2 '
15
15
end
You can’t perform that action at this time.
0 commit comments