From 9723f9dee7f905aa35d3fd7843692f618d227a6f Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:25:20 -0700 Subject: [PATCH] chore: prep v10.5.0 for release --- CHANGELOG.md | 8 ++++++++ easypost/constant.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4069025..ad2a36f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## v10.5.0 (2026-02-20) + +- Adds the following functions: + - `fedex_registration.register_address` + - `fedex_registration.request_pin` + - `fedex_registration.validate_pin` + - `fedex_registration.submit_invoice` + ## v10.4.0 (2026-02-03) - Adds the following functions usable by child and referral customer users: diff --git a/easypost/constant.py b/easypost/constant.py index 2e8585e..1bd4a74 100644 --- a/easypost/constant.py +++ b/easypost/constant.py @@ -1,6 +1,6 @@ # flake8: noqa # Library version -VERSION = "10.4.0" +VERSION = "10.5.0" VERSION_INFO = [str(number) for number in VERSION.split(".")] # Client defaults diff --git a/pyproject.toml b/pyproject.toml index 44f6a1a..b9fe5d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "easypost" description = "EasyPost Shipping API Client Library for Python" -version = "10.4.0" +version = "10.5.0" readme = "README.md" requires-python = ">=3.9" license = { file = "LICENSE" }