From 702bd9052863a35ebe55613b1c31b68b1589138a Mon Sep 17 00:00:00 2001 From: Jaseem Jas Date: Fri, 25 Jul 2025 17:59:37 +0530 Subject: [PATCH 1/2] docs: add version badge to README - Add client version badge (v0.1.1) to README.md badge section - Badge links to PyPI package page for easy access - Positioned after Python version badge for logical grouping --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 42983aa..a819c66 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ A Python client for the Unstract ApiHub service that provides a clean, Pythonic interface for document processing APIs following the extract → status → retrieve pattern. [![Python Version](https://img.shields.io/badge/python-3.12+-blue.svg)](https://python.org) +[![Version](https://img.shields.io/badge/version-0.1.1-blue.svg)](https://pypi.org/project/apihub-python-client/) [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) [![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](https://github.com/Zipstack/apihub-python-client) [![PyPI Downloads](https://img.shields.io/pypi/dm/apihub-python-client)](https://pypi.org/project/apihub-python-client/) From f281f9972257bfb88c502bdd1d82382eec7c8776 Mon Sep 17 00:00:00 2001 From: Jaseem Jas Date: Fri, 25 Jul 2025 18:01:05 +0530 Subject: [PATCH 2/2] improve: replace static version badge with dynamic PyPI version badge - Replace hardcoded version badge with shields.io PyPI version badge - Badge now automatically pulls latest version from PyPI - No manual updates needed when releasing new versions - Maintains same functionality with better maintainability --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a819c66..649051a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A Python client for the Unstract ApiHub service that provides a clean, Pythonic interface for document processing APIs following the extract → status → retrieve pattern. [![Python Version](https://img.shields.io/badge/python-3.12+-blue.svg)](https://python.org) -[![Version](https://img.shields.io/badge/version-0.1.1-blue.svg)](https://pypi.org/project/apihub-python-client/) +[![PyPI Version](https://img.shields.io/pypi/v/apihub-python-client)](https://pypi.org/project/apihub-python-client/) [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) [![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](https://github.com/Zipstack/apihub-python-client) [![PyPI Downloads](https://img.shields.io/pypi/dm/apihub-python-client)](https://pypi.org/project/apihub-python-client/)