Skip to content

Commit cf8bfe0

Browse files
author
Marius Kleidl
committed
1.0.1
1 parent 3bc58e5 commit cf8bfe0

File tree

2 files changed

+45
-40
lines changed

2 files changed

+45
-40
lines changed

CHANGELOG.md

Lines changed: 44 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,68 @@
1-
### 1.0.0 / 2022-06-17 ###
1+
### 1.0.1 / 2023-06-20
22

3-
* Drop support for Python 2 (https://github.com/tus/tus-py-client/pull/35)
4-
* Add support for asyncIO using AsyncUploader class (https://github.com/tus/tus-py-client/pull/35)
5-
* Use only first block of the file for a finger print (https://github.com/tus/tus-py-client/pull/37)
6-
* Allow all 2XX status code for an upload response (https://github.com/tus/tus-py-client/pull/44)
3+
- Fix bug preventing `verify_tls_cert` from being applied to `HEAD` requests (https://github.com/tus/tus-py-client/pull/80)
4+
- Fix bug preventing empty files from being uploaded (https://github.com/tus/tus-py-client/pull/78)
75

8-
### 0.2.5 / 2020-06-5 ###
6+
### 1.0.0 / 2022-06-17
97

10-
### 0.2.4/ 2019-14-01 ###
8+
- Drop support for Python 2 (https://github.com/tus/tus-py-client/pull/35)
9+
- Add support for asyncIO using AsyncUploader class (https://github.com/tus/tus-py-client/pull/35)
10+
- Use only first block of the file for a finger print (https://github.com/tus/tus-py-client/pull/37)
11+
- Allow all 2XX status code for an upload response (https://github.com/tus/tus-py-client/pull/44)
1112

12-
* Add support for tus upload-checksum header
13+
### 0.2.5 / 2020-06-5
1314

14-
### 0.2.3/ 2018-13-03 ###
15+
### 0.2.4/ 2019-14-01
1516

16-
* Refine connection error handling
17-
* Make long description render correctly on pypi.org
18-
* Set default chunksize to largest possible number
17+
- Add support for tus upload-checksum header
1918

20-
### 0.2.2/ 2018-19-03 ###
19+
### 0.2.3/ 2018-13-03
2120

22-
* Replace the use of PyCurl with builtin http.client
23-
* Remove unwanted debug printing
21+
- Refine connection error handling
22+
- Make long description render correctly on pypi.org
23+
- Set default chunksize to largest possible number
2424

25-
### 0.2.1 / 2017-12-02 ###
25+
### 0.2.2/ 2018-19-03
2626

27-
* Fix installtion and Doc autogeneration issue
27+
- Replace the use of PyCurl with builtin http.client
28+
- Remove unwanted debug printing
2829

29-
### 0.2 / 2017-12-02 ###
30+
### 0.2.1 / 2017-12-02
3031

31-
* Support for URL storage
32-
* Use uploader without Client [#14](https://github.com/tus/tus-py-client/issues/14)
32+
- Fix installtion and Doc autogeneration issue
3333

34-
### 0.1.3 / 2017-11-15 ###
34+
### 0.2 / 2017-12-02
3535

36-
* Fix installation issues, due to missing readme.
36+
- Support for URL storage
37+
- Use uploader without Client [#14](https://github.com/tus/tus-py-client/issues/14)
3738

38-
### 0.1.2 / 2017-10-27 ###
39+
### 0.1.3 / 2017-11-15
3940

40-
* Fix PyCurl ssl error [#11](https://github.com/tus/tus-py-client/issues/11)
41+
- Fix installation issues, due to missing readme.
4142

42-
### 0.1.1 / 2017-10-12 ###
43+
### 0.1.2 / 2017-10-27
4344

44-
* Support relative upload urls (Thank you @ciklop)
45-
* Unpin requests library version (Thank you @peixian)
46-
* Test against Python 3.6 (Thank you @thedrow)
45+
- Fix PyCurl ssl error [#11](https://github.com/tus/tus-py-client/issues/11)
4746

48-
### 0.1 / 2017-07-10 ###
47+
### 0.1.1 / 2017-10-12
4948

50-
* Automatically retry a chunk upload on failure.
51-
* Read tus server response content `uploader.request.response_content`.
52-
* More http request details in Tus Exception.
49+
- Support relative upload urls (Thank you @ciklop)
50+
- Unpin requests library version (Thank you @peixian)
51+
- Test against Python 3.6 (Thank you @thedrow)
5352

54-
### 0.1a2 / 2016-10-31 ###
53+
### 0.1 / 2017-07-10
5554

56-
* Allow upload-metadata
57-
* Upload files from file stream
58-
* Better request error handling
59-
* Cleaner retrieval of offset after chunk upload
55+
- Automatically retry a chunk upload on failure.
56+
- Read tus server response content `uploader.request.response_content`.
57+
- More http request details in Tus Exception.
6058

61-
### 0.1a1 / 2016-10-13 ###
59+
### 0.1a2 / 2016-10-31
6260

63-
* Alpha release
61+
- Allow upload-metadata
62+
- Upload files from file stream
63+
- Better request error handling
64+
- Cleaner retrieval of offset after chunk upload
65+
66+
### 0.1a1 / 2016-10-13
67+
68+
- Alpha release

tusclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.0.1'

0 commit comments

Comments
 (0)