Skip to content

Commit 7bf9130

Browse files
committed
Update type of cents_usd
1 parent 7e9dfc0 commit 7bf9130

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.0] - 2021-07-14
9+
10+
### Changed
11+
12+
- [BREAKING] Changed `order.price_cents_usd` and `order.patch_fee_cents_usd` from string to integer.
13+
814
## [1.6.0] - 2021-07-14
915

1016
### Added

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
patch_ruby (1.5.2)
4+
patch_ruby (1.7.0)
55
json (~> 2.1, >= 2.1.0)
66
typhoeus (~> 1.0, >= 1.0.1)
77

@@ -19,11 +19,11 @@ GEM
1919
coderay (1.1.3)
2020
concurrent-ruby (1.1.7)
2121
diff-lcs (1.4.3)
22-
ethon (0.12.0)
23-
ffi (>= 1.3.0)
22+
ethon (0.14.0)
23+
ffi (>= 1.15.0)
2424
factory_bot (6.1.0)
2525
activesupport (>= 5.0.0)
26-
ffi (1.15.0)
26+
ffi (1.15.3)
2727
i18n (1.8.7)
2828
concurrent-ruby (~> 1.0)
2929
json (2.5.1)

lib/patch_ruby/models/order.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ def self.openapi_types
9090
:'production' => :'Boolean',
9191
:'state' => :'String',
9292
:'allocation_state' => :'String',
93-
:'price_cents_usd' => :'String',
94-
:'patch_fee_cents_usd' => :'String',
93+
:'price_cents_usd' => :'Integer',
94+
:'patch_fee_cents_usd' => :'Integer',
9595
:'allocations' => :'Array<Allocation>',
9696
:'registry_url' => :'String',
9797
:'metadata' => :'Object'

lib/patch_ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module Patch
14-
VERSION = '1.6.0'
14+
VERSION = '1.7.0'
1515
end

0 commit comments

Comments
 (0)