Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.0.0 #89

Merged
merged 16 commits into from
Apr 28, 2020
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ rvm:
- 2.3
- 2.4
- 2.5
- 2.6
script: "gem install bundler --no-ri --no-rdoc; bundle exec rspec"
notifications:
slack:
Expand Down
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#### 4.0.0 release, Sep 5th, 2019
- [Allow multiple accounts in a single service/application](https://github.com/goshippo/shippo-ruby-client/pull/74)
- [Updated rest client depndency](https://github.com/goshippo/shippo-ruby-client/pull/91)
- [Remove json dependency](https://github.com/goshippo/shippo-ruby-client/pull/90)
- [Fix require relative issues](https://github.com/goshippo/shippo-ruby-client/pull/90)
- [Fix shipment create parcel -> parcels](https://github.com/goshippo/shippo-ruby-client/pull/86)
- [Fix rate call for Shipments](https://github.com/goshippo/shippo-ruby-client/pull/83)

#### 3.1.0 release, Sep 11th, 2017
- Removed deprecated methods
- Removed hash payload in GET
Expand Down Expand Up @@ -36,13 +44,13 @@
#### 2.0.5 release, Oct 24th, 2016
- Updated README.md
- now possible to send API version

#### 2.0.4 release, Oct 6th 2016
- Rails5 Compatibility via relaxed dependencies
- removing mime-types dependency
- relaxing activesupport to allow version 5
- reorganizing exceptions to enable subclassing with additional parameters and more readable #to_s method
- adding bin/console for easy irb-ing
- adding bin/console for easy irb-ing

#### 2.0.3 release, Oct 3rd 2016

Expand All @@ -51,9 +59,9 @@
#### 2.0.2 release, Aug 17th 2016

- Removed gem dependency `colored2` as directly decorating object and string was causing Rals Rack to throw errors when users uploaded large files.
- Fixed url for `CarrierAccount`
- Fixed url for `CarrierAccount`
- README fixes

#### 2.0.0-beta July 7th, 2016

- Added a concept of List transformer in order to properly coerce
Expand Down
2 changes: 1 addition & 1 deletion lib/shippo/api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Shippo
module API
VERSION = '3.1.0'
VERSION = '4.0.0'
end
end
3 changes: 1 addition & 2 deletions shippo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Gem::Specification.new do |spec|
spec.license = 'MIT'
spec.metadata = { 'shippo_documentation' => 'https://goshippo.com/docs/' }

spec.add_dependency 'rest-client', '>= 2.0', '<2.2'
spec.add_dependency 'json', '~> 1.8'
spec.add_dependency 'rest-client', '>= 2.1', '<2.2'
spec.add_dependency 'hashie', '>= 3.5.2'
spec.add_dependency 'activesupport', '>= 4'
spec.add_dependency 'awesome_print'
Expand Down