Skip to content

Commit

Permalink
Merge pull request #204 from EasyPost/v6.0.1
Browse files Browse the repository at this point in the history
chore: prepares v6.0.1 for release
  • Loading branch information
Justintime50 authored Jul 1, 2022
2 parents a6031f9 + 48bf907 commit 610a935
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 32 deletions.
35 changes: 5 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## CHANGELOG

### v6.0.1 2022-07-01

* Backported newer user-agent header

### v6.0.0 2021-10-12

* JSON encodes POST bodies instead of form encoding them
Expand Down Expand Up @@ -64,6 +68,7 @@
* Fix typo in `install_requires` causing `six` to not be installed by pip (gh-84 from @roehnan)

### 3.6.4 2018-04-09 (never actually released)

* Update user tests

### 3.6.3 2018-02-05
Expand All @@ -89,103 +94,84 @@

* Added `get_rates` method to Order objects


### 3.5.1 2017-01-19

* Fixed create for ScanForms


### 3.5.0 2017-01-18

* Added basic CRUD methods for Webhook Objects
* Fixed Order test


### 3.4.0 2016-12-20

* Added session pooling


### 3.3.0 2016-12-15

* Added support for Report objects


### 3.2.2 2016-07-29

* Added support for Insurance objects


### 3.2.1 2016-07-18

* Added `to_json` method for EasyPost object. Thanks ThePsyjo!


### 3.2.0 2016-05-17

* Remove `api_keys` from object dumps
* Fixed address tests to keep them in line with the new API messages
* This was previously known as version 3.1.3


### 3.1.2 2016-03-04

* Added a suite of unittest tests. Thanks wyounas!


### 3.1.1 2016-02-12

* Added ability to interact with Users (create, retrieve and update)


### 3.1.0 2015-12-08

* Add verifications to Address.create


### 3.0.6 2015-11-24

* Added Blob.retrieve for fetching urls for blobs stored by EasyPost.


### 3.0.5 2015-11-18

* Changed the interface on `Tracker.create_list` to return True rather than the
Trackers themselves


### 3.0.4 2015-11-16

* Minor bugfix


### 3.0.3 2015-11-16

* Added a `Tracker.all_updated` method for retrieving a large number of Trackers
by status or `tracking_details` updated datetime


### 3.0.2 2015-11-10

* Added a `Tracker.create_list` method for creating a large number of Trackers
at once


### 3.0.1 2015-11-04

* Fixed some examples and added some new ones, particularly dealing with Tracker.all


### 3.0.0 2015-10-19

* Fixed bug where retrieving a shipment by tracking code or reference doesn't set the ID properly


### 2.0.16 2015-08-10

* Added ability to interact with carrier accounts (full CRUD)


### 2.0.15 2015-07-31

* Fixed bug with address verification url rendering
Expand All @@ -194,59 +180,48 @@ at once

* Fix numerous bugs, including Python3 encoding


### 2.0.13 2015-01-09

* Added python3 support


### 2.0.12 2014-11-04

* Added tracker to shipment response
* Added tracker example


### 2.0.11 2014-09-19

* Added Order support.


### 2.0.10 2014-09-10

* Added Pickup cancellation method.


### 2.0.9 2014-09-02

* Added Pickup resource for scheduling pickups.


### 2.0.6 2013-10-17

* Added Event resource for webhook digestion.
* Added buy method to Batch.


### 2.0.5 2013-09-22

* Bug Fix: UTF-8 input handled more gracefully.


### 2.0.4 2013-07-31

* API Addition: Tracker resource added. Trackers can be used to register any tracking code with EasyPost webhooks.


### 2.0.3 2013-07-23

* API Addition: `Shipment.track_with_code` returns tracking details for any tracking code.


### 2.0.2 2013-07-07

* Bug fix: `address.create_and_verify` is now a classmethod.


### 2.0.1 2013-07-05

* Added function to Address to all creating and verifying at the same time.
Expand Down
2 changes: 1 addition & 1 deletion easypost/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "6.0.0"
VERSION = "6.0.1"

if "-" in VERSION:
VERSION_INFO = tuple([int(v) for v in VERSION.split("-")[0].split(".")] + VERSION.split("-")[1:])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup(
name="easypost",
version="6.0.0",
version="6.0.1",
description="EasyPost Shipping API Client Library for Python",
author="EasyPost",
author_email="[email protected]",
Expand Down

0 comments on commit 610a935

Please sign in to comment.