File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 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.
77
88## [ Unreleased]
99
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+
1014## [ 1.9.2] - 2021-02-16
1115- Update jsonobject dependency for Python 3.9 compatibility
1216
@@ -54,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5458## [ 1.0.0] - 2017-05-05
5559- Initial release
5660
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
5863[ 1.9.2 ] : https://github.com/taxjar/taxjar-python/compare/v1.9.1...v1.9.2
5964[ 1.9.1 ] : https://github.com/taxjar/taxjar-python/compare/v1.9.0...v1.9.1
6065[ 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 22
33setup (
44 name = 'taxjar' ,
5- version = '1.9.2 ' ,
5+ version = '2.0.0 ' ,
66 description = 'Sales tax API client for Python' ,
77 author = 'TaxJar' ,
88 author_email = 'support@taxjar.com' ,
99 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' ,
1111 packages = ['taxjar' , 'taxjar.data' ],
1212 classifiers = [
1313 "Programming Language :: Python :: 2.6" ,
Original file line number Diff line number Diff line change 33DEFAULT_API_URL = 'https://api.taxjar.com'
44SANDBOX_API_URL = 'https://api.sandbox.taxjar.com'
55API_VERSION = 'v2'
6- VERSION = '1.9.2 '
6+ VERSION = '2.0.0 '
You can’t perform that action at this time.
0 commit comments