Skip to content

Commit 610a935

Browse files
authored
Merge pull request #204 from EasyPost/v6.0.1
chore: prepares v6.0.1 for release
2 parents a6031f9 + 48bf907 commit 610a935

File tree

3 files changed

+7
-32
lines changed

3 files changed

+7
-32
lines changed

CHANGELOG.md

Lines changed: 5 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## CHANGELOG
22

3+
### v6.0.1 2022-07-01
4+
5+
* Backported newer user-agent header
6+
37
### v6.0.0 2021-10-12
48

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

6670
### 3.6.4 2018-04-09 (never actually released)
71+
6772
* Update user tests
6873

6974
### 3.6.3 2018-02-05
@@ -89,103 +94,84 @@
8994

9095
* Added `get_rates` method to Order objects
9196

92-
9397
### 3.5.1 2017-01-19
9498

9599
* Fixed create for ScanForms
96100

97-
98101
### 3.5.0 2017-01-18
99102

100103
* Added basic CRUD methods for Webhook Objects
101104
* Fixed Order test
102105

103-
104106
### 3.4.0 2016-12-20
105107

106108
* Added session pooling
107109

108-
109110
### 3.3.0 2016-12-15
110111

111112
* Added support for Report objects
112113

113-
114114
### 3.2.2 2016-07-29
115115

116116
* Added support for Insurance objects
117117

118-
119118
### 3.2.1 2016-07-18
120119

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

123-
124122
### 3.2.0 2016-05-17
125123

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

130-
131128
### 3.1.2 2016-03-04
132129

133130
* Added a suite of unittest tests. Thanks wyounas!
134131

135-
136132
### 3.1.1 2016-02-12
137133

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

140-
141136
### 3.1.0 2015-12-08
142137

143138
* Add verifications to Address.create
144139

145-
146140
### 3.0.6 2015-11-24
147141

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

150-
151144
### 3.0.5 2015-11-18
152145

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

156-
157149
### 3.0.4 2015-11-16
158150

159151
* Minor bugfix
160152

161-
162153
### 3.0.3 2015-11-16
163154

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

167-
168158
### 3.0.2 2015-11-10
169159

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

173-
174163
### 3.0.1 2015-11-04
175164

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

178-
179167
### 3.0.0 2015-10-19
180168

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

183-
184171
### 2.0.16 2015-08-10
185172

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

188-
189175
### 2.0.15 2015-07-31
190176

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

195181
* Fix numerous bugs, including Python3 encoding
196182

197-
198183
### 2.0.13 2015-01-09
199184

200185
* Added python3 support
201186

202-
203187
### 2.0.12 2014-11-04
204188

205189
* Added tracker to shipment response
206190
* Added tracker example
207191

208-
209192
### 2.0.11 2014-09-19
210193

211194
* Added Order support.
212195

213-
214196
### 2.0.10 2014-09-10
215197

216198
* Added Pickup cancellation method.
217199

218-
219200
### 2.0.9 2014-09-02
220201

221202
* Added Pickup resource for scheduling pickups.
222203

223-
224204
### 2.0.6 2013-10-17
225205

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

229-
230209
### 2.0.5 2013-09-22
231210

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

234-
235213
### 2.0.4 2013-07-31
236214

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

239-
240217
### 2.0.3 2013-07-23
241218

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

244-
245221
### 2.0.2 2013-07-07
246222

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

249-
250225
### 2.0.1 2013-07-05
251226

252227
* Added function to Address to all creating and verifying at the same time.

easypost/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "6.0.0"
1+
VERSION = "6.0.1"
22

33
if "-" in VERSION:
44
VERSION_INFO = tuple([int(v) for v in VERSION.split("-")[0].split(".")] + VERSION.split("-")[1:])

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="easypost",
26-
version="6.0.0",
26+
version="6.0.1",
2727
description="EasyPost Shipping API Client Library for Python",
2828
author="EasyPost",
2929
author_email="[email protected]",

0 commit comments

Comments
 (0)