shipengine_sdk 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d370ae8b38bb9f56249210fe89f0cbddc5258aee3ab9e820023fadcf90c9f0f5
4
- data.tar.gz: de99f00ab5f8c44a9c9efdf051507cf1bc0095c56a4c37cf4480fdb0a1306e05
3
+ metadata.gz: 6819826fb69967a6ace6d32416713b636ec7c2dbe89f23b35363ffe30e41d5fd
4
+ data.tar.gz: a9c23422ac698aafde230c5e7fa732593bdf6c59369d7f518c5ba054283f8473
5
5
  SHA512:
6
- metadata.gz: fc676b66315b85a71794755904ccc3f97b9bc6b2258b1da034e0f585487dbec81bfd20c0aa84d853e54156996d3656434039395d76245e80bd4506ccd1ad4bbe
7
- data.tar.gz: 04d3117b6ae9bf6c19990c1edd34a186c37d94643f771dd1aa0c5e1beee8256e1f3531f3401af9d27cef1602c00340830af33a447e5aca8e22dc0f040a7734d8
6
+ metadata.gz: a18c0ba3ff279693fba6dfae9cfb77a0e7ce6b25905718a1fb8bbcd78e79cfdbf7dca1241094479ae2be27899a45d4dfb4065bd3be539d2f870998766d0e0e0a
7
+ data.tar.gz: a814e66af2b3e25a30f1fb9d0442cea759adb16fafd02e44363f2d2944ab8d8def04154e52bfc6c8754ca3119bef53f6f54f10c6aaa3b94073e2bfc61b8d3187
data/CHANGELOG.md CHANGED
@@ -1,8 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.4](https://github.com/ShipEngine/shipengine-ruby/compare/v1.0.3...v1.0.4) (2024-01-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * change default timeout to 60s ([81bfe73](https://github.com/ShipEngine/shipengine-ruby/commit/81bfe73feb0abc8a87aedb15e9b3935dd33d4da9))
9
+
3
10
  ## [1.0.3](https://github.com/ShipEngine/shipengine-ruby/compare/v1.0.2...v1.0.3) (2023-06-16)
4
11
 
5
12
 
6
13
  ### Bug Fixes
7
14
 
8
15
  * Update publish to Gem API Key ([3f9c8e5](https://github.com/ShipEngine/shipengine-ruby/commit/3f9c8e5eec8147e2fb1b38a114fa0e2ff24a5f9e))
16
+
17
+ ## [1.0.4]
18
+
19
+ ### Changes
20
+
21
+ * increase default timeout from 30s to 60s
data/README.md CHANGED
@@ -10,7 +10,7 @@ The Official Ruby SDK for [ShipEngine API](https://shipengine.com) offering low-
10
10
  Quick Start
11
11
  ===========
12
12
 
13
- Install ShipEngine via [RubyGems](https://rubygems.org/)
13
+ Install the ShipEngine SDK Gem via [RubyGems](https://rubygems.org/gems/shipengine_sdk)
14
14
  ```bash
15
15
  gem install shipengine_sdk
16
16
  ```
@@ -8,7 +8,7 @@ module ShipEngine
8
8
  @api_key = api_key
9
9
  @base_url = base_url || Constants.base_url
10
10
  @retries = retries || 1
11
- @timeout = timeout || 30_000
11
+ @timeout = timeout || 60_000
12
12
  @page_size = page_size || 50
13
13
  validate
14
14
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShipEngine
4
- VERSION = '1.0.3'
4
+ VERSION = '1.0.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipengine_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - ShipEngine Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-16 00:00:00.000000000 Z
11
+ date: 2024-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday