File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 2.0.0] - 2021-07-13
11
+ - Use Session objects in Requests library for reusing TCP connections
12
+ - Fix syntax warning emitted by client in Python 3.8
13
+
10
14
## [ 1.9.2] - 2021-02-16
11
15
- Update jsonobject dependency for Python 3.9 compatibility
12
16
@@ -54,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
54
58
## [ 1.0.0] - 2017-05-05
55
59
- Initial release
56
60
57
- [ Unreleased ] : https://github.com/taxjar/taxjar-python/compare/v1.9.2...HEAD
61
+ [ Unreleased ] : https://github.com/taxjar/taxjar-python/compare/v2.0.0...HEAD
62
+ [ 2.0.0 ] : https://github.com/taxjar/taxjar-python/compare/v1.9.2...v2.0.0
58
63
[ 1.9.2 ] : https://github.com/taxjar/taxjar-python/compare/v1.9.1...v1.9.2
59
64
[ 1.9.1 ] : https://github.com/taxjar/taxjar-python/compare/v1.9.0...v1.9.1
60
65
[ 1.9.0 ] : https://github.com/taxjar/taxjar-python/compare/v1.8.0...v1.9.0
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'taxjar' ,
5
- version = '1.9.2 ' ,
5
+ version = '2.0.0 ' ,
6
6
description = 'Sales tax API client for Python' ,
7
7
author = 'TaxJar' ,
8
8
9
9
url = 'https://github.com/taxjar/taxjar-python' ,
10
- download_url = 'https://github.com/taxjar/taxjar-python/archive/v1.9.2 .zip' ,
10
+ download_url = 'https://github.com/taxjar/taxjar-python/archive/v2.0.0 .zip' ,
11
11
packages = ['taxjar' , 'taxjar.data' ],
12
12
classifiers = [
13
13
"Programming Language :: Python :: 2.6" ,
Original file line number Diff line number Diff line change 3
3
DEFAULT_API_URL = 'https://api.taxjar.com'
4
4
SANDBOX_API_URL = 'https://api.sandbox.taxjar.com'
5
5
API_VERSION = 'v2'
6
- VERSION = '1.9.2 '
6
+ VERSION = '2.0.0 '
You can’t perform that action at this time.
0 commit comments