From 8b10931b7c4315e5e3f2c1c21f4898ef8c551b9b Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:28:41 -0600 Subject: [PATCH] chore: prepare v8.2.0 for release --- CHANGELOG.md | 2 ++ easypost/constant.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d7965..1c4e5ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # CHANGELOG +## v8.2.0 (2023-10-11) + - Add dedicated API Key-related service, available via the `api_keys` property of a client - NOTE: Please note the naming. The `api_key` property of a client is the currently-used API key string, while the `api_keys` property is the service for managing API keys. - Migrated API Key-related functionality to `api_keys` service, deprecated old methods in `user` service diff --git a/easypost/constant.py b/easypost/constant.py index edafe6e..e475ad6 100644 --- a/easypost/constant.py +++ b/easypost/constant.py @@ -1,6 +1,6 @@ # flake8: noqa # Library version -VERSION = "8.1.1" +VERSION = "8.2.0" VERSION_INFO = [str(number) for number in VERSION.split(".")] # Client defaults diff --git a/setup.py b/setup.py index 9f101bb..a05ded3 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name="easypost", - version="8.1.1", + version="8.2.0", description="EasyPost Shipping API Client Library for Python", author="EasyPost", author_email="support@easypost.com",