Skip to content

Commit f9b2adf

Browse files
authored
Merge pull request #89 from goshippo/new-release
Release 4.0.0
2 parents e47beea + 3839388 commit f9b2adf

15 files changed

Lines changed: 7571 additions & 411 deletions

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ rvm:
66
- 2.3
77
- 2.4
88
- 2.5
9+
- 2.6
910
script: "gem install bundler --no-ri --no-rdoc; bundle exec rspec"
1011
notifications:
1112
slack:

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
#### 4.0.0 release, Sep 5th, 2019
2+
- [Allow multiple accounts in a single service/application](https://github.com/goshippo/shippo-ruby-client/pull/74)
3+
- [Updated rest client depndency](https://github.com/goshippo/shippo-ruby-client/pull/91)
4+
- [Remove json dependency](https://github.com/goshippo/shippo-ruby-client/pull/90)
5+
- [Fix require relative issues](https://github.com/goshippo/shippo-ruby-client/pull/90)
6+
- [Fix shipment create parcel -> parcels](https://github.com/goshippo/shippo-ruby-client/pull/86)
7+
- [Fix rate call for Shipments](https://github.com/goshippo/shippo-ruby-client/pull/83)
8+
19
#### 3.1.0 release, Sep 11th, 2017
210
- Removed deprecated methods
311
- Removed hash payload in GET
@@ -36,13 +44,13 @@
3644
#### 2.0.5 release, Oct 24th, 2016
3745
- Updated README.md
3846
- now possible to send API version
39-
47+
4048
#### 2.0.4 release, Oct 6th 2016
4149
- Rails5 Compatibility via relaxed dependencies
4250
- removing mime-types dependency
4351
- relaxing activesupport to allow version 5
4452
- reorganizing exceptions to enable subclassing with additional parameters and more readable #to_s method
45-
- adding bin/console for easy irb-ing
53+
- adding bin/console for easy irb-ing
4654

4755
#### 2.0.3 release, Oct 3rd 2016
4856

@@ -51,9 +59,9 @@
5159
#### 2.0.2 release, Aug 17th 2016
5260

5361
- Removed gem dependency `colored2` as directly decorating object and string was causing Rals Rack to throw errors when users uploaded large files.
54-
- Fixed url for `CarrierAccount`
62+
- Fixed url for `CarrierAccount`
5563
- README fixes
56-
64+
5765
#### 2.0.0-beta July 7th, 2016
5866

5967
- Added a concept of List transformer in order to properly coerce

lib/shippo/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Shippo
22
module API
3-
VERSION = '3.1.0'
3+
VERSION = '4.0.0'
44
end
55
end

shippo.gemspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.license = 'MIT'
1717
spec.metadata = { 'shippo_documentation' => 'https://goshippo.com/docs/' }
1818

19-
spec.add_dependency 'rest-client', '>= 2.0', '<2.2'
20-
spec.add_dependency 'json', '~> 1.8'
19+
spec.add_dependency 'rest-client', '>= 2.1', '<2.2'
2120
spec.add_dependency 'hashie', '>= 3.5.2'
2221
spec.add_dependency 'activesupport', '>= 4'
2322
spec.add_dependency 'awesome_print'
@@ -28,6 +27,6 @@ Gem::Specification.new do |spec|
2827
spec.add_development_dependency 'guard-rspec'
2928
spec.add_development_dependency 'yard'
3029
spec.add_development_dependency 'rspec', '~> 3.4'
31-
spec.add_development_dependency 'webmock', '~> 2.1'
30+
spec.add_development_dependency 'webmock', '~> 3.7.2'
3231
spec.add_development_dependency 'vcr', '~> 3.0', '>= 3.0.3'
3332
end

spec/fixtures/batch/test_add.yml

Lines changed: 849 additions & 91 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/batch/test_create.yml

Lines changed: 38 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/batch/test_invalid_create.yml

Lines changed: 31 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)