stellar_client 0.5.1 → 0.5.2

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: d098c45ca1586e4babfa594c3701e6bf7a8d6c68545b309ce18185ecde463cde
4
- data.tar.gz: a000d93b730dfc3c07c26d6b5b152bd9d5bb3458ceb4008687ce2077322ded43
3
+ metadata.gz: 91de0c4d8378e702695f0286e276b4087b7007c4fc879512f10de11ae671491e
4
+ data.tar.gz: 8b1f83a70ae9d5639ef73915814596ff6c42f7fac5a4a1a98a435e9031939b71
5
5
  SHA512:
6
- metadata.gz: 96a9b24b1d6162602980efd01bccdf04b2b46f29df1d376f22c6754611d590dd4936abef8bd9b51b9802347611d8511f464b2cc5d79590c5397dcf3cf97afaa5
7
- data.tar.gz: f0eb890fb4e6032f08bd8fe82a78e06f488b7dbb3437960f7b3a76e54b74bd5752a4364e0431c1623f6b1c8d6f5487272efdc414488d48d3265aca80cb6da09a
6
+ metadata.gz: 340f252a75dcae22c752326199052c3457366912c4a8b8ced3138df91899b87d8ea09f8e0511023a3ae6aeb01ba22510435658d87e110eecece45ca1eeda1bff
7
+ data.tar.gz: 98c5f7b564d4299f556736e59b1e900f8eb5601a1650c80578070f11ea7925a287b46c5178d5b7f973e90ff7324f2959ff9bc514222d2039b737fcfbbb148a60
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## [0.5.2] - 2018-09-11
8
+ ### Added
9
+ - Add `WithdrawResponse#max_amount`
10
+
7
11
  ## [0.5.1] - 2018-09-04
8
12
  ### Changed
9
13
  - Append `/withdraw` to host/path for `WithdrawRequest`
@@ -6,10 +6,12 @@ module StellarClient
6
6
  memo_type
7
7
  memo
8
8
  min_amount
9
+ max_amount
9
10
  fee_fixed
10
11
  fee_percent
11
12
  fee_network
12
13
  ].freeze
14
+
13
15
  attribute(:body, Coercers::IndifferentHash, {
14
16
  lazy: true,
15
17
  default: :default_body,
@@ -18,6 +20,7 @@ module StellarClient
18
20
  attribute :memo_type, String, lazy: true, default: :default_memo_type
19
21
  attribute :memo, String, lazy: true, default: :default_memo
20
22
  attribute :min_amount, BigDecimal, lazy: true, default: :default_min_amount
23
+ attribute :max_amount, BigDecimal, lazy: true, default: :default_max_amount
21
24
  attribute :fee_fixed, BigDecimal, lazy: true, default: :default_fee_fixed
22
25
  attribute(:fee_percent, BigDecimal, {
23
26
  lazy: true,
@@ -1,3 +1,3 @@
1
1
  module StellarClient
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stellar_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-04 00:00:00.000000000 Z
11
+ date: 2018-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_config