Skip to content

Commit a2c365e

Browse files
committed
Version 2.0.0
1 parent 6c04ff4 commit a2c365e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff 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

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
setup(
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='[email protected]',
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",

taxjar/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
DEFAULT_API_URL = 'https://api.taxjar.com'
44
SANDBOX_API_URL = 'https://api.sandbox.taxjar.com'
55
API_VERSION = 'v2'
6-
VERSION = '1.9.2'
6+
VERSION = '2.0.0'

0 commit comments

Comments
 (0)