From c49155f089a8ee237a19f2d4bf681827ce3051f2 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 10 Jun 2026 18:31:42 -0500 Subject: [PATCH] fix(release): set __version__ to 1.0.1 and author email to .com for PyPI 1.0.1 pyproject was already 1.0.1 but __init__.__version__ lagged at 1.0.0 and the author email still used validpay.io. Aligns metadata before (re-)publishing 1.0.1 to PyPI (the prior v1.0.1 release run failed before reaching PyPI; PyPI is still on 1.0.0). Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 2 +- validpay/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9d586b1..1b094fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "1.0.1" description = "Official ValidPay Python SDK — client-side AES-256-GCM encryption + ValidPay API client" readme = "README.md" license = { file = "LICENSE" } -authors = [{ name = "ValidPay", email = "dev@validpay.io" }] +authors = [{ name = "ValidPay", email = "dev@validpay.com" }] requires-python = ">=3.9" keywords = [ "validpay", diff --git a/validpay/__init__.py b/validpay/__init__.py index 9f15fc9..f5d6c58 100644 --- a/validpay/__init__.py +++ b/validpay/__init__.py @@ -49,4 +49,4 @@ "OfflineVerifyResult", ] -__version__ = "1.0.0" +__version__ = "1.0.1"